vim: add various plugin

This commit is contained in:
Mathieu Maret 2017-08-16 14:14:28 +02:00
parent ed5be3e864
commit 4d47deab3c
1 changed files with 19 additions and 3 deletions

22
.vimrc
View File

@ -540,9 +540,14 @@ Plugin 'gitlab@gitlab.mathux.org:Mathieu/taglist.git'
" Tagbar look like a maintened taglist
Plugin 'majutsushi/tagbar'
"Syntax checking | Install flake8 or pylint for python
Plugin 'vim-syntastic/syntastic'
let g:syntastic_c_checkers = ['gcc', 'cppcheck']
if v:version >= 800
" Async lint
Plugin 'w0rp/ale'
else
"Syntax checking | Install flake8 or pylint for python
Plugin 'vim-syntastic/syntastic'
let g:syntastic_c_checkers = ['gcc', 'cppcheck']
endif
"Completion (need more configuration for python, c# ...)
"Plugin 'Valloric/YouCompleteMe'
" VimWiki
@ -569,6 +574,17 @@ Plugin 'gregkh/kernel-coding-style.git'
" Recognize Key in screen/tmux
"Plugin 'drmikehenry/vim-fixkey'
Plugin 'tpope/vim-surround'
" Maps ss to surround word. e.g. ss] to add [] around word
nmap ss ysiw
" Maps sl to surround line
nmap sl yss
" Surround Visual selection
vmap s S
Plugin 'junegunn/goyo.vim'
"Complete delimiters
Plugin 'Raimondi/delimitMate.git'
Plugin 'Yggdroot/LeaderF'
call vundle#end()