aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2018-04-06 22:56:02 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-05-29 22:57:27 +0100
commita79949c4785736d74c012565c476962fc322b2c3 (patch)
treee199c47132552b6acdeb5906f0b230c565c72194 /vimrc
parentd8244aaff126cb613543f1e4720af29a538f63c1 (diff)
downloaddotnvim-a79949c4785736d74c012565c476962fc322b2c3.tar.gz
dotnvim-a79949c4785736d74c012565c476962fc322b2c3.zip
Make syntastic passive
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc7
1 files changed, 3 insertions, 4 deletions
diff --git a/vimrc b/vimrc
index 52a1bc9..6252d0a 100644
--- a/vimrc
+++ b/vimrc
@@ -43,17 +43,16 @@ autocmd FileType python set smartindent cinwords=if,elif,else,for,while,try,exce
let g:syntastic_python_checkers = ['pyflakes']
let g:syntastic_go_checkers = ['go', 'golint', 'govet', 'errcheck']
-
let g:syntastic_scala_scalastyle_jar = '/home/juanmartinez/scala-local/lib/scalastyle_2.12-1.0.0-batch.jar'
let g:syntastic_scala_scalastyle_config_file = '/home/juanmartinez/scala-local/lib/scalastyle_config.xml'
let g:syntastic_scala_checkers = ['fsc', 'scalastyle']
-
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 0
-let g:syntastic_check_on_open = 1
-let g:syntastic_check_on_wq = 0
let g:syntastic_loc_list_height = 5
+" manual checks
+let g:syntastic_mode_map = { 'mode': 'passive' }
+
" scala
let g:scala_scaladoc_indent = 1
noremap <C-F5> :Autoformat<CR>