|
|
|
@ -24,8 +24,8 @@ Plugin 'scrooloose/syntastic'
|
|
|
|
|
" Git |
|
|
|
|
Plugin 'tpope/vim-fugitive' |
|
|
|
|
|
|
|
|
|
" NERD Commenter |
|
|
|
|
Plugin 'scrooloose/nerdcommenter' |
|
|
|
|
" Easy Commenting |
|
|
|
|
Plugin 'tpope/vim-commentary' |
|
|
|
|
|
|
|
|
|
" Surround - Easy changing of quotes and stuff |
|
|
|
|
Plugin 'tpope/vim-surround' |
|
|
|
@ -36,6 +36,12 @@ Plugin 'kien/ctrlp.vim'
|
|
|
|
|
" Ack from vim |
|
|
|
|
Plugin 'mileszs/ack.vim' |
|
|
|
|
|
|
|
|
|
" Improved vim status bar |
|
|
|
|
Plugin 'bling/vim-airline' |
|
|
|
|
|
|
|
|
|
" Indent guides |
|
|
|
|
Plugin 'Yggdroot/indentLine' |
|
|
|
|
|
|
|
|
|
" Language specific syntax highlighting |
|
|
|
|
Plugin 'derekwyatt/vim-scala' |
|
|
|
|
Plugin 'kchmck/vim-coffee-script' |
|
|
|
@ -60,7 +66,6 @@ if !has("win32") || !has("win16")
|
|
|
|
|
Plugin 'christoomey/vim-tmux-navigator' |
|
|
|
|
endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
" Markdown |
|
|
|
|
Plugin 'godlygeek/tabular' |
|
|
|
|
Plugin 'plasticboy/vim-markdown' |
|
|
|
@ -154,3 +159,14 @@ if exists('+colorcolumn')
|
|
|
|
|
else |
|
|
|
|
au BufWinEnter * let w:m2=matchadd('ErrorMsg', '\%>80v.\+', -1) |
|
|
|
|
endif |
|
|
|
|
|
|
|
|
|
" Indent lines customizations |
|
|
|
|
|
|
|
|
|
" Color customizations |
|
|
|
|
" let g:indentLine_color_term=### |
|
|
|
|
|
|
|
|
|
" Line indent guides are defaulted to off |
|
|
|
|
let g:indentLine_enabled=0 |
|
|
|
|
|
|
|
|
|
" Leader + i will toggle line indent guides |
|
|
|
|
map <silent> <Leader>i :IndentLinesToggle<CR> |
|
|
|
|