Reputation: 81667
Is there a way to configure the directory where all the configuration files are stored by IntelliJ IDEA (version 8.0.1)?
By default, these files are stored in %home%\.IntelliJIdea80... (or .IdeaIC12 etc.), but I want to define another location...
Upvotes: 22
Views: 27993
Reputation: 18612
Locations can be changed by editing the following file:
IDE_HOME\bin\idea.properties
Follow the comments in idea.properties file to change the defaults, make sure to un-comment the lines defining these properties:
Common cases when you may need to change the default locations of the IDE files:
Upvotes: 2
Reputation: 77231
You can change this in you %idea installation directory%\bin\idea.properties
. Edit this in-place or copy the whole file to your %home%
directory to keep the setting across different versions of idea.
Upvotes: 34