My vim configuration
curl -L https://raw.github.com/hanksudo/vimrc/master/install.sh | sh
- tpope/vim-pathogen: pathogen.vim: manage your runtimepath
- preservim/nerdtree: A tree explorer plugin for vim.
- easymotion/vim-easymotion: Vim motions on speed!
- itchyny/lightline.vim: A light and configurable statusline/tabline for Vim
- terryma/vim-expand-region: Vim plugin that allows you to visually select increasingly larger regions of text using the same key combination.
- morhetz/gruvbox: Retro groove color scheme for Vim
- ctrlpvim/ctrlp.vim: Active fork of kien/ctrlp.vim—Fuzzy file, buffer, mru, tag, etc finder.
- tpope/vim-surround: surround.vim: quoting/parenthesizing made simple
- airblade/vim-gitgutter: A Vim plugin which shows git diff markers in the sign column and stages/previews/undoes hunks and partial hunks.
- scrooloose/nerdtree: A tree explorer plugin for vim.
- scrooloose/nerdcommenter: Vim plugin for intensely orgasmic commenting
- fatih/vim-go: Go development plugin for Vim
- rust-lang/rust.vim: Vim configuration for Rust.
- elzr/vim-json: A better JSON for Vim: distinct highlighting of keywords vs values, JSON-specific (non-JS) warnings, quote concealing. Pathogen-friendly.
mkdir -p ~/.vim/syntax/
cd ~/.vim/syntax/
wget -O - http://www.vim.org/scripts/download_script.php?src_id=19394 > nginx.vim
cat > ~/.vim/filetype.vim <<EOF
au BufRead,BufNewFile /etc/nginx/*,/usr/local/nginx/conf/* if &ft == ‘’ | setfiletype nginx | endif
EOF