Synchronising phpStorm between two computers using DropBox
I have already mastered synchronising my projects between two computers but I am struggling to sync the settings.
I found some pointers here and some discussions but the information is not complete:
http://www.jetbrains.com/phpstorm/webhelp/project-and-ide-settings.html
I am on OSX and I basically need to move the folder /Library/Preferences/WebIde60/ to dropbox and have phpStorm look for it there, but I don't know the right settings.
Following the instructions in the link above:
Locations of the Config, System, and Plugins directories can be modified in PhpStorm_home\bin\idea.properties file.
The locations don't already exist in that file so I don't know what the syntax is for adding them.
Thank you for reading and I appreciate any help you can give me
Please sign in to leave a comment.
Hi there,
??
Here is part of such file (PhpStorm v7 EAP for Windows)
P.S.
Check out this plugin: http://plugins.jetbrains.com/plugin/4560?pr=phpStorm
Thanks Andriy - the plugin you mentioned was not compatible with my phpStorm (v7)
I also tried that code but it doesn't seem to work on OSX. It actually created a folder called ${user.home} (and the subdirectories for my custom location) inside the existing config directory.
Perhaps there is a different syntax for OSX to specify the directory.. does anyone know it?
OK got it.. the syntax is:
#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes
#---------------------------------------------------------------------
idea.config.path=~/dropbox/applicationdata/phpstorm/WebIde60/
I used ~/ to specify the root of the users file system
You could replace ${user.home} by actual path (e.g. /Users/John.Doe ) ...