diff options
author | Aaron LI <aly@aaronly.me> | 2018-07-18 19:13:53 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-07-18 19:13:53 +0800 |
commit | d89c99d278651c972eb95e1a7bfabc46a717700d (patch) | |
tree | afa8ae9ad6e34308fa1d40319c65cb33394bba55 | |
parent | cff4b96399e26b356d3a43a324223c58c0764464 (diff) | |
download | dotfiles-d89c99d278651c972eb95e1a7bfabc46a717700d.tar.bz2 |
vimrc.local: Disable syntastic auto popup
-rw-r--r-- | _vimrc.local | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_vimrc.local b/_vimrc.local index 9222acf..7535273 100644 --- a/_vimrc.local +++ b/_vimrc.local @@ -13,6 +13,7 @@ if has('gui_running') set guifont=Source\ Code\ Pro\ Regular\ 11 endif +set tabstop=8 set wrap " wrap long lines at a character in 'breakat' set linebreak @@ -24,8 +25,7 @@ set nospell set clipboard= " syntastic settings -let g:syntastic_always_populate_loc_list = 1 -let g:syntastic_auto_loc_list = 1 +"let g:syntastic_always_populate_loc_list = 1 +"let g:syntastic_auto_loc_list = 1 "let g:syntastic_check_on_open = 1 -let g:syntastic_check_on_wq = 0 - +"let g:syntastic_check_on_wq = 0 |