Add comments about some plugins and add syntax check for vim, zsh, sh, …
This commit is contained in:
parent
e766e0bc8a
commit
538a571d2c
13
vimrc
13
vimrc
|
@ -218,16 +218,25 @@ Plugin 'ervandew/supertab'
|
||||||
" REQUIREMENTS: See :h syntastic-intro
|
" REQUIREMENTS: See :h syntastic-intro
|
||||||
Plugin 'scrooloose/syntastic'
|
Plugin 'scrooloose/syntastic'
|
||||||
|
|
||||||
|
" Advanced auto-completion system
|
||||||
Plugin 'Shougo/neocomplcache'
|
Plugin 'Shougo/neocomplcache'
|
||||||
|
|
||||||
|
" Make vim mor Puppet friendly
|
||||||
Plugin 'rodjek/vim-puppet'
|
Plugin 'rodjek/vim-puppet'
|
||||||
|
|
||||||
|
" Auto alignment (for Puppet for example)
|
||||||
Plugin 'godlygeek/tabular'
|
Plugin 'godlygeek/tabular'
|
||||||
|
|
||||||
Plugin 'bling/vim-airline'
|
Plugin 'bling/vim-airline'
|
||||||
"Bundle 'edkolev/tmuxline.vim'
|
"Bundle 'edkolev/tmuxline.vim'
|
||||||
|
|
||||||
|
" Give viual aid to navigate marks
|
||||||
Plugin 'jacquesbh/vim-showmarks'
|
Plugin 'jacquesbh/vim-showmarks'
|
||||||
|
|
||||||
" Furry finder (files, mru, …)
|
" Furry finder (files, mru, …)
|
||||||
Plugin 'kien/ctrlp.vim'
|
Plugin 'kien/ctrlp.vim'
|
||||||
|
|
||||||
|
" Undo history visualizer
|
||||||
Plugin 'mbbill/undotree'
|
Plugin 'mbbill/undotree'
|
||||||
|
|
||||||
" Autoclose (, ", …
|
" Autoclose (, ", …
|
||||||
|
@ -330,8 +339,8 @@ map <F8> <Leader>cs
|
||||||
|
|
||||||
" Won't work ...
|
" Won't work ...
|
||||||
let g:syntastic_mode_map = { 'mode': 'active',
|
let g:syntastic_mode_map = { 'mode': 'active',
|
||||||
\ 'active_filetypes': ['ruby', 'php'],
|
\ 'active_filetypes': ['markdown', 'php', 'ruby', 'sh', 'zsh'],
|
||||||
\ 'passive_filetypes': ['puppet'] }
|
\ 'passive_filetypes': ['puppet', 'sql', 'vim'] }
|
||||||
"let g:syntastic_puppet_checkers = ['puppet']
|
"let g:syntastic_puppet_checkers = ['puppet']
|
||||||
let g:syntastic_puppet_checkers = ['puppetlint']
|
let g:syntastic_puppet_checkers = ['puppetlint']
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue