Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/julienbourdeau/phpstorm-config
- Owner: julienbourdeau
- Created: 2015-04-30T14:27:47.000Z (over 9 years ago)
- Default Branch: WebIde90
- Last Pushed: 2015-10-03T15:31:47.000Z (about 9 years ago)
- Last Synced: 2024-10-22T22:56:55.306Z (29 days ago)
- Language: PHP
- Size: 238 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.