dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit da68e98b9fc53340c4a4725ba08399338ad87206
parent 985f732ca0c57affbf3956ce5dc7f9263baf0941
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed, 28 Jan 2015 19:56:44 -0800

Add syntastic (in passive mode)

Diffstat:
M.vim/vimrc | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/.vim/vimrc b/.vim/vimrc @@ -13,6 +13,7 @@ Plugin 'Blackrush/vim-gocode' Plugin 'git://github.com/scala/scala-dist.git', {'rtp': 'tool-support/src/vim'} Plugin 'The-NERD-tree' Plugin 'spacehi.vim' +Plugin 'Syntastic' Plugin 'git://github.com/kien/ctrlp.vim.git' call vundle#end() filetype plugin indent on @@ -53,6 +54,9 @@ set wildmenu " Nicer autocomplete set wildmode=longest,full set wildignore=*.o,*.pyc +" Syntastic +let g:syntastic_mode_map = { 'mode': 'passive' } + " Omnicomplete set completeopt+=longest