X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=64a622595dc9da1bc5bdd76f813e044423b05735;hb=4b75b7303116e43b1d842f8102dbb8a78cc880ce;hp=df56e12ea2133a6ea17ca5c34e8f20725ec973bd;hpb=85fea365744e1deda5213e2a900c5bc563350090;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index df56e12..64a6225 100644 --- a/vimrc +++ b/vimrc @@ -41,6 +41,11 @@ endif " Make sure Vim (and not Vi) settings are used. set nocompatible +" Disallow :autocmd, shell and write commands in .vimrc and .exrc files in the +" current directory. Only used if 'exrc' is enabled (off by default), +" precaution just in case somebody enables 'exrc'. +set secure + " Use UTF-8 for all internal data (buffers, registers, etc.). This doesn't " affect reading files in different encodings, see 'fileencodings' for that. set encoding=utf-8 @@ -449,10 +454,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, @@ -491,8 +496,10 @@ cnoremap jk " And fix my typos ... inoremap JK inoremap Jk +inoremap jK cnoremap JK cnoremap Jk +cnoremap jK " Disable arrow keys for all modes except command modes. Thanks to James Vega " (http://git.jamessan.com/?p=etc/vim.git;a=summary). @@ -615,9 +622,11 @@ if has('eval') 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 +" coloring. 'list' is not changed, see next mapping. +nnoremap v :setlocal nowrap nospell synmaxcol=0 \ :2match +" Toggle 'list'. +nnoremap l :set invlist " Make last active window the only window. Similar to o. nnoremap O po @@ -763,7 +772,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