Skip to content

Instantly share code, notes, and snippets.

@devdrops
Last active July 5, 2017 20:00
Show Gist options
  • Select an option

  • Save devdrops/c8a5ee0a52fbe59fe19668ee309302b3 to your computer and use it in GitHub Desktop.

Select an option

Save devdrops/c8a5ee0a52fbe59fe19668ee309302b3 to your computer and use it in GitHub Desktop.
VIM basic settings

VIM basic settings

How to install?

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
set shiftwidth=4
set softtabstop=4
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

devdrops commented Jul 5, 2017

Copy link
Copy Markdown
Author

dotfiles

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