Project Settings
Project settings are stored with each specific project as a set of xml files under the .idea folder. If you specify the default project settings, these settings will be automatically used for each newly created project.
IDE Settings
IDE settings are stored in the dedicated directories under the product home directory, depending on the platform. The product home directory name is composed of the product name and version. For example:
- Windows
-
- <User home>\.WebIdeXX\config that contains user-specific settings.
- <User home>\.WebIdeXX\system that stores PhpStorm data caches.
<User home> in WindowsXP is C:\Documents and Settings\<User name>\; in Windows Vista it is C:\Users\<User name>\
- Linux
-
- ~/.WebIdeXX/config that contains user-specific settings.
- ~/.WebIdeXX/system that stores PhpStorm data caches.
- Mac OS
-
- ~/Library/Application Support/WebIdeXX contains the catalog with plugins.
- ~/Library/Preferences/WebIdeXX contains the rest of the configuration settings.
- ~/Library/Caches/WebIdeXX contains data caches, logs, local history, etc. These files can be quite significant in size.
- ~/Library/Logs/WebIdeXX contains logs
The config directory has several subfolders that contain xml files with your personal settings. You can easily share your preferred keymaps, color schemes, etc. by copying these files into the corresponding folders on another PhpStorm installation. Prior to copying, make sure that PhpStorm is not running, because it can erase the newly transferred files before shutting down.
The following is the list of some of the subfolders under the config folder, and the settings contained therein.
| Folder name | User Settings |
|---|---|
| codestyles | Contains code style schemes. |
| colors | Contains editor colors and fonts customization schemes. |
| filetypes | Contains user-defined file types. |
| inspection | Contains code inspection profiles. |
| keymaps | Contains IDE keyboard customizations. |
| options | Contains various options, for example, feature usage statistics and macros. |
| templates | Contains user-defined live templates. |
| tools | Contains configuration files for the user-defined external tools. |
| shelf | Contains shelved changes. |
Locations of the Config, System, and Plugins directories can be modified in PhpStorm_home\bin\idea.properties file.
You will need to adjust the following parameters:
- idea.config.path
- idea.system.path
- idea.plugins.path

