X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=1dfc91956094d9af1abefc371e1a5e02c5cb44e5;hb=874a5ebdc7dcd3608bbdcf15a1f891dbc62303c7;hp=582797ebc522f035aae17a30cf898a84f5991f6a;hpb=2eccc45d79e303ccef384d3de2b683e365b5b85f;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 582797e..1dfc919 100644 --- a/vimrc +++ b/vimrc @@ -39,9 +39,16 @@ set directory-=. " securemodelines (Vim script #1876). set nomodeline -" When completing paths first use the longest path then display a list of all -" possible files. -set wildmode=longest,list +" Complete to longest common string (list:longest) and then complete all full +" matches after another (full). Thanks to pbrisbin +" (http://pbrisbin.com:8080/dotfiles/vimrc). +set wildmode=list:longest,full + +" Increase history of executed commands (:). +set history=1000 + +" Increase number of possible undos. +set undolevels=1000 " Use strong encryption if possible, also used for swap/undo files. if v:version >= 703 @@ -172,6 +179,7 @@ if has('statusline') " on the right set statusline+=%= " right align + set statusline+=0x%-8B\ " current character under cursor as hex set statusline+=%-12.(%l,%c%V%)\ " line number (%l), " column number (%c), " virtual column number if different @@ -214,6 +222,11 @@ cnoremap nnoremap nnoremap - +" Behave like 'scrolloff' but only while searching. Thanks to "Benjamin R. +" Haskell" from the Vim mailing list (2010-10-26). +nnoremap n nzv3j3k +nnoremap N Nzv3k3j + " Go to next and previous buffer. Thanks to elik in #vim on Freenode " (2010-05-16 18:38 CEST) for this idea. nnoremap gb :bnext