aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc11
1 files changed, 11 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index 55f4d8c..d832e82 100644
--- a/vimrc
+++ b/vimrc
@@ -53,9 +53,20 @@ Plugin 'loremipsum' | " Sample text generator
53" Autocompleter ======================================. 53" Autocompleter ======================================.
54Plugin 'Valloric/MatchTagAlways' 54Plugin 'Valloric/MatchTagAlways'
55Plugin 'Valloric/YouCompleteMe' 55Plugin 'Valloric/YouCompleteMe'
56Plugin 'scrooloose/syntastic'
57set statusline+=%#warningmsg#
58set statusline+=%{SyntasticStatuslineFlag()}
59set statusline+=%*
60let g:syntastic_always_populate_loc_list = 1
61let g:syntastic_auto_loc_list = 1
62let g:syntastic_check_on_open = 1
63let g:syntastic_check_on_wq = 0
56Plugin 'davidhalter/jedi-vim' | " jedi gets used to display python function signatures 64Plugin 'davidhalter/jedi-vim' | " jedi gets used to display python function signatures
57let g:jedi#show_call_signatures_delay = 0 65let g:jedi#show_call_signatures_delay = 0
58let g:jedi#completions_enabled = 0 66let g:jedi#completions_enabled = 0
67let g:LatexBox_viewer = "evince"
68let g:LatexBox_latexmk_preview_continuously = 1
69
59" let g:jedi#show_call_signatures = "2" 70" let g:jedi#show_call_signatures = "2"
60 71
61" Disabled ===========================================. 72" Disabled ===========================================.
..