X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=8b394d0689aed7e53c3b49680a03683eaf551858;hb=cb310f8c9c3ace582f4ed56128e733fc6b1d0998;hp=26c4f5f691216431d555fab0cc5d321989e7b1c9;hpb=e68ab201d8e682ac4d5b7f93d293c920c078e116;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 26c4f5f..8b394d0 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 @@ -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). @@ -763,7 +770,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