diff options
Diffstat (limited to '')
-rw-r--r-- | .vimperatorrc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.vimperatorrc b/.vimperatorrc index 457dd1a..534e00e 100644 --- a/.vimperatorrc +++ b/.vimperatorrc @@ -1,8 +1,37 @@ +" ========== +" SETTINGS +" ========== + +" show URL-Bar in FF set guioptions+=T + +" Open resized popups in a new window set popups=resized + +" Automatically show completions while you are typing. set wildoptions=auto + +" what is completed +" s --> Search engines and keyword URLs +" l --> FF location bar entries +" f --> local files set complete=slf +" FF setting: disable loading via middle-mouse click +set! middlemouse.contentLoadURL=false + +" =========== +" MAPPINGS +" =========== + +" Better print mapping map <C-p> :ha<CR> + +" Backspace for backwards map <BS> H + +" switch C-O and C-I s.t. they are more logical +noremap <C-o> <C-i> +noremap <C-i> <C-o> + " vim: ft=vim |