Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/julienbourdeau/phpstorm-config

My PhpStorm IDE config
https://github.com/julienbourdeau/phpstorm-config

Last synced: 21 days ago
JSON representation

My PhpStorm IDE config

Awesome Lists containing this project

README

        

# phpstorm-config

This is my global configuration for [PhpStorm](https://www.jetbrains.com/phpstorm/),an IDE for PHP.

# Todo

- [ ] Move to symlink in `~/Projets/` like my [dotfiles](https://github.com/julienbourdeau/dotfiles)

# Installation

Before you do this, make sure PhpStorm is not running, or it will overwrite your changes.

Use the following commands to go to the config directory, remove some default directories, and pull the files from my repository:

```bash
cd ~/Library/Preferences/WebIde90

# remove the files and folders that are in this repository
rm -r codestyles/
rm -r colors/
rm -r fileTemplates/
rm -r inspection/
rm -r keymaps/
rm -r quicklists/
rm -r tools/
rm -r port

# pull this repository
git init
git remote add origin [email protected]:julienbourdeau/phpstorm-config.git
git fetch
git checkout WebIde90
```

## Subdirectories of the config folder

Directory | Contents
----------|---------
codestyles | Code Style settings (Editor > Code Style)
colors | Colors & Fonts settings (Editor > Colors & Fonts)
fileTemplates | File and Code Templates (Editor > File and Code Templates)
filetypes | File Types (Editor > File Types)
inspection | Inspection profiles (Editor > Inspections)
keymaps | Keyboard shortcuts (Appearance & Behavior > Keymap)
templates | Live templates (Editor > Live Templates)
quicklists | dunno yet
tools | dunno yet

# Credits

Thanks to [@nicwortel](https://github.com/nicwortel/phpstorm-ide-config) for original idea and research.