|
@@ -313,3 +313,21 @@ let g:gundo_close_on_revert = 1
|
|
|
|
|
|
" F3 key to show/hide Gundo sidebar
|
|
" F3 key to show/hide Gundo sidebar
|
|
nnoremap <F3> :GundoToggle<CR>
|
|
nnoremap <F3> :GundoToggle<CR>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
+" Gundo Setup
|
|
|
|
+"
|
|
|
|
+"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
+
|
|
|
|
+" automatically open/close pane when errors (or not)
|
|
|
|
+let g:syntastic_auto_loc_list = 1
|
|
|
|
+" Redefine errors/warning symbols on sidebar
|
|
|
|
+let g:syntastic_error_symbol = 'EE'
|
|
|
|
+let g:syntastic_style_error_symbol = 'ee'
|
|
|
|
+let g:syntastic_warning_symbol = 'WW'
|
|
|
|
+let g:syntastic_style_warning_symbol = 'Ws'
|
|
|
|
+" redefine default python linter
|
|
|
|
+"let g:syntastic_python_checker = 'pylint'
|
|
|
|
+" add options to python linter
|
|
|
|
+"let g:syntastic_python_checker_args = ''
|