summaryrefslogtreecommitdiff
path: root/.vimperatorrc
blob: 534e00e058bd8f1f67ed7d34d25ec759d700a63f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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