aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
-rw-r--r--files/.vimrc5
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index 4b8f91c..0b8d41a 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -56,3 +56,6 @@
[submodule "taglist.vim"]
path = files/.vim/bundle/taglist.vim
url = https://github.com/vim-scripts/taglist.vim
+[submodule "syntastic"]
+ path = files/.vim/bundle/syntastic
+ url = https://github.com/scrooloose/syntastic.git
diff --git a/files/.vimrc b/files/.vimrc
index 14a6b65..d970839 100644
--- a/files/.vimrc
+++ b/files/.vimrc
@@ -196,6 +196,11 @@ map YY "+yy
nnoremap <silent> <F3> :YRShow<CR>
inoremap <silent> <F3> <ESC>:YRShow<CR>
+" Set syntastic passive mode
+let g:syntastic_mode_map = { 'mode': 'passive',
+ \ 'active_filetypes': [],
+ \ 'passive_filetypes': [] }
+
" Surrounds double angle quotes «»
let g:surround_171="« \r »"
let g:surround_187="«\r»"