PhpStorm hides the .idea folder in the project tool window by default. However, I'd like to show it in order to inspect the files and add/edit a .idea/.gitignore file to include and exclude specific files from version control. I have searched for project configuration options in order to unhide the .idea folder, but haven't found a way.
I could just use another editor to manage the files in the .idea folder, but I'd like to use the git-integration of PhpStorm to manage these files.
For the .idea
directory there's a dedicated "registry" setting that controls whether or not it is hidden (it is enabled by default in PhpStorm and PyCharm, at the very least). Here's how to change it:
Help | Find Action...
and look for registry
(or via Maintenance
, Press Ctrl-Alt-Shift-/ on Windows when using the default keymap).Find Action
. By default, on Windows it is Shift+Ctrl+A and on Mac it is Shift+⌘+A.projectView.hide.dot.idea
entry and uncheck it.Taken from
You may need to restart your IDE after applying changes in Registry. Thanks to @DavidPauli!