X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=4860c7fac09feb6cd622aa76ba9e0f6dcb1a9552;hb=85752ff8c965dd916dfc4588d15cf9c7ba37e292;hp=0cfc4cb4e5d979df5551e9209ac5193e01d876e2;hpb=ee235b0a49c43d001e5bffddb122465450909df2;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 0cfc4cb..4860c7f 100644 --- a/vimrc +++ b/vimrc @@ -449,10 +449,10 @@ if has('statusline') set statusline+=: if has('modify_fname') && v:version >= 700 " some functions need 7.0 set statusline+=%{SRF()} " path to current file - set statusline+=\ " space after path else - set statusline+=%f\ " path to current file in buffer + set statusline+=%f " path to current file in buffer endif + set statusline+=\ " space after path set statusline+=%h " [help] if buffer is help file set statusline+=%w " [Preview] if buffer is preview buffer set statusline+=%m " [+] if buffer was modified, @@ -614,6 +614,10 @@ if has('eval') endfunction nnoremap t :call UseTabs() endif +" Enable "verbatim" mode. Used to view files with long lines or without syntax +" coloring. +nnoremap v :set nolist nowrap nospell synmaxcol=0 + \ :2match " Make last active window the only window. Similar to o. nnoremap O po @@ -759,7 +763,11 @@ inoreabbrev completly completely " Activate syntax coloring. if has('syntax') - syntax enable + " But only if it wasn't already active. Prevents breaking the syntax + " coloring when reloading the vimrc. Thanks to johnLate for the idea. + if !exists('g:syntax_on') + syntax enable + endif " Don't highlight more than 500 columns as I normally don't have that long " lines and they slow down syntax coloring. Thanks to Derek Wyatt @@ -805,7 +813,7 @@ if has('syntax') if exists('*matchadd') " Highlight some important keywords in all documents. - let l:todos = ['TODO', 'XXX', 'FIXME', + let l:todos = ['TODO', 'XXX', 'FIXME', 'NOTE', \ 'CHANGED', 'REMOVED', 'DELETED'] " Compatibility fix for Vim 6.4 which can't handle for in function " (without function it's ignored).