summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <jesse.luehrs@stripe.com>2015-02-22 16:00:17 -0800
committerJesse Luehrs <doy@tozt.net>2015-02-22 16:07:15 -0800
commitd7a2e281fbefdcb599077f5d6ef3ba4c0ab022d5 (patch)
treed739a893312993cea903b7c138f284179bd5755e
parent53978efe2d914541c7f16a1c182cc344fe1a6f0f (diff)
downloadconf-d7a2e281fbefdcb599077f5d6ef3ba4c0ab022d5.tar.gz
conf-d7a2e281fbefdcb599077f5d6ef3ba4c0ab022d5.zip
start using syntastic
-rw-r--r--.gitmodules3
m---------vim/bundle/syntastic0
-rw-r--r--vimrc6
3 files changed, 9 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index f79dff2..c0eeceb 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -82,3 +82,6 @@
[submodule "vim/bundle/puppet"]
path = vim/bundle/puppet
url = https://github.com/rodjek/vim-puppet
+[submodule "vim/bundle/syntastic"]
+ path = vim/bundle/syntastic
+ url = git://github.com/scrooloose/syntastic
diff --git a/vim/bundle/syntastic b/vim/bundle/syntastic
new file mode 160000
+Subproject 71aa71bc1b2949f41d921c1bd00e8d35559b8f9
diff --git a/vimrc b/vimrc
index 474cd54..3e5d233 100644
--- a/vimrc
+++ b/vimrc
@@ -832,4 +832,10 @@ omap f? <Plug>(easymotion-Tn)
map fn <Plug>(easymotion-vim-n)
map fN <Plug>(easymotion-vim-N)
" }}}
+" syntastic {{{
+let g:syntastic_always_populate_loc_list = 1
+let g:syntastic_check_on_open = 1
+let g:syntastic_check_on_wq = 0
+let g:syntastic_enable_signs = 0
+" }}}
" }}}