From 538a571d2c905e628b231fbab5fe7b8441e8e7ca Mon Sep 17 00:00:00 2001 From: Gardouille Date: Tue, 18 Aug 2015 18:54:34 +0200 Subject: [PATCH] =?UTF-8?q?Add=20comments=20about=20some=20plugins=20and?= =?UTF-8?q?=20add=20syntax=20check=20for=20vim,=20zsh,=20sh,=20=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vimrc | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/vimrc b/vimrc index eddcede..e311260 100755 --- a/vimrc +++ b/vimrc @@ -218,16 +218,25 @@ Plugin 'ervandew/supertab' " REQUIREMENTS: See :h syntastic-intro Plugin 'scrooloose/syntastic' +" Advanced auto-completion system Plugin 'Shougo/neocomplcache' + +" Make vim mor Puppet friendly Plugin 'rodjek/vim-puppet' + +" Auto alignment (for Puppet for example) Plugin 'godlygeek/tabular' + Plugin 'bling/vim-airline' "Bundle 'edkolev/tmuxline.vim' + +" Give viual aid to navigate marks Plugin 'jacquesbh/vim-showmarks' " Furry finder (files, mru, …) Plugin 'kien/ctrlp.vim' +" Undo history visualizer Plugin 'mbbill/undotree' " Autoclose (, ", … @@ -330,8 +339,8 @@ map cs " Won't work ... let g:syntastic_mode_map = { 'mode': 'active', - \ 'active_filetypes': ['ruby', 'php'], - \ 'passive_filetypes': ['puppet'] } + \ 'active_filetypes': ['markdown', 'php', 'ruby', 'sh', 'zsh'], + \ 'passive_filetypes': ['puppet', 'sql', 'vim'] } "let g:syntastic_puppet_checkers = ['puppet'] let g:syntastic_puppet_checkers = ['puppetlint']