curl -o ~/.vimrc https://gist.githubusercontent.com/devdrops/c8a5ee0a52fbe59fe19668ee309302b3/raw/aa7583d6c802f07e0e03f94a999f7ac3bec968b5/vimrc
mkdir -p ~/.vim/syntax
curl -o ~/.vim/syntax/php.vim https://gist.githubusercontent.com/devdrops/c8a5ee0a52fbe59fe19668ee309302b3/raw/a5f6f5386b0e3d4d8b4fe6873052be6991b80186/php.vim
Last active
July 5, 2017 20:00
-
-
Save devdrops/c8a5ee0a52fbe59fe19668ee309302b3 to your computer and use it in GitHub Desktop.
VIM basic settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set shiftwidth=4 | |
| set softtabstop=4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if has("autocmd") | |
| filetype on | |
| filetype indent on | |
| filetype plugin on | |
| endif | |
| syntax on | |
| set number | |
| set relativenumber | |
| set expandtab | |
| set shiftwidth=2 | |
| set softtabstop=2 | |
| let g:netrw_banner = 0 | |
| let g:netrw_liststyle = 3 |
devdrops
commented
Jul 5, 2017
Author

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment