aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorMax Christian Pohle2016-09-22 10:27:44 +0200
committerMax Christian Pohle2016-09-22 10:27:44 +0200
commit857fe529c10eed4fe9cef365712c9a4d8caa2fd9 (patch)
tree3a568ee85903c07c5b4c01b90ca9b851b06d4293 /vimrc
parent8be9dd7508c3ba3bbace6b34e8f2ddc782134d53 (diff)
downloadvim-857fe529c10eed4fe9cef365712c9a4d8caa2fd9.tar.bz2
vim-857fe529c10eed4fe9cef365712c9a4d8caa2fd9.zip
cleaned up
doc/INSTALL: color-coded is no longer used, because its features are also provided by YouCompleteMe. The installation method got simpler and I reordered the commands for faster deployment. Dropped nelstroms colorscheme mac_classic from the git submodule list, because that can also be installed by Vundle Included 'syntastic', which highlights syntactic errors in many languages and comes in very handy when using LaTeX
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 ===========================================.
..