every time launch intellij idea ignores $home
environment variable , creates .java
, ideaprojects
in /home/user
directory.
why this? how force use $home
?
idea doesn't use home variable determine home directory is. instead uses java property user.home determine home folder.
to change behaviour, can edit intellij idea_home\bin\idea.properties
file:
idea.config.path=/tmp/config idea.system.path=/tmp/system idea.plugins.path=/tmp/plugins
for more information @ jetbrain's page!
Comments
Post a Comment