X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=1dfc91956094d9af1abefc371e1a5e02c5cb44e5;hb=874a5ebdc7dcd3608bbdcf15a1f891dbc62303c7;hp=77280238d06c7e72a007f8c71fbe31c5275cdb3d;hpb=d46c3a34499ad00e6d23cb1ac369523e7369b766;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 7728023..1dfc919 100644 --- a/vimrc +++ b/vimrc @@ -44,6 +44,12 @@ set nomodeline " (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 set cryptmethod=blowfish @@ -173,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