idea.config.path=${user.home}/.IntelliJIdea/config idea.system.path=${user.home}/.IntelliJIdea/system idea.plugins.path=${user.home}/.IntelliJIdea/config/plugins idea.log.path=${user.home}/.IntelliJIdea/system/logSo in order to create a new profile you need to copy the settings directory from USER_HOME/.IntelliJIdea to USER_HOME/.MyIntelliJ and in the configuration file that points to the settings directory you need to change to pointers accordingly to:
idea.config.path=${user.home}/.MyIntelliJ/config idea.system.path=${user.home}/.MyIntelliJ/system idea.plugins.path=${user.home}/.MyIntelliJ/config/plugins idea.log.path=${user.home}/.MyIntelliJ/system/logAssume, I will keep the configuration in MyIntelliJ.properties file. Now, on the startup, IntelliJ just needs to know, which properties file to use. As the documentation says, we can either set up IDEA_PROPERTIES environment variable to specify custom location of this properties file, like
set IDEA_PROPERTIES=c:\config\MyIntelliJ.propertiesor in unix:
export IDEA_PROPERTIES=/home/anton/MyIntelliJ.propertiesIn the environment variable isn't specified, the configuration file is searched according following sequence (first successful is used):
1. USER_HOME/
2. IDEA_HOME/bin
This way, it is pretty much possible to organize the profiles for IntelliJ, however, it would be cool to have such possibility out of the box via UI configuration.