Greetings

Does PhpStorm (Intellij) have the ability to specify settings for a specific project?
For example: include the necessary plugins, specify the codestyle, specify the desired debugger (I have every project working in its docker-container).

  • one
    Well, of course. There are default settings, and there are project settings. Button in the toolbar with a wrench - KAGG Design

1 answer 1

There are two types of settings in JetBrains IDE:

  1. Project Settings

  2. IDE settings

Project settings are specific to each project and are stored in the project’s .idea directory. IDE settings are located:

  • On Windows: %USERPROFILE%\.PhpStormXX\config
  • On Linux: ~/.PhpStormXX/config

The settings can be accessed via File | Settings File | Settings context menu or by pressing Ctrl+Alt+S

Settings You need to proceed from what type of settings you want to change. For example, code-style acts at the IDE level, i.e. it is hardly possible to have your own code-style for each project without switching it manually every time. At the same time, the Run / Debug options are operations at the project level, which means that you can have unique debug configurations for each project.

More about settings