]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Fix some of my spelling mistakes with iabbrev.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index 77280238d06c7e72a007f8c71fbe31c5275cdb3d..c9d57d0d5a5bf9f3747eda0292bd992fa36bb979 100644 (file)
--- 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
@@ -309,6 +316,17 @@ if has('gui_macvim') && has('eval')
     let macvim_skip_cmd_opt_movement = 1
 endif
 
+" In case 'hlsearch' is used disable it with <C-L>. Thanks to frogonwheels and
+" vimgor (bot) in #vim on Freenode (2010-03-30 05:58 CEST).
+noremap <silent> <C-L> :nohlsearch<CR><C-L>
+
+
+" ABBREVIATIONS
+
+" Fix some of my spelling mistakes.
+iabbrev relle reelle
+iabbrev reele reelle
+
 
 " SYNTAX SETTINGS