-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimperatorrc
43 lines (32 loc) · 870 Bytes
/
vimperatorrc
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
38
39
40
41
42
43
color simple
"Highlight fær die Suche anschalten
set hlsearch
"Highlighting mit # fær die letzte Suche ausschalten
map # :noh
"Zege die Lesezeichen- und Adressleiste an
"set guioptions=T
set guioptions=
noremap J <C-d>
noremap K <C-u>
noremap <C-S-Tab> gT
noremap <C-h> gT
noremap <Left> gT
noremap <C-Tab> gT
noremap <Right> gt
noremap <C-l> gt
noremap l gt
nnoremap h gT
nnoremap j 7j
nnoremap k 7k
"nnoremap f F
"nnoremap F f
"Aktuelles Tab mit Shift+Pfeiltasten oder
"Strg+Shift+l bzw. Strg+Shift+h bewegen
map <S-Right> :tabmove! +1<CR>
map <S-Left> :tabmove! -1<CR>
map <C-L> :tabmove! +1<CR>
map <C-H> :tabmove! -1<CR>
"Mit s zwischen den letzten beiden Tabs hin und her schalten
map s <C-6>
"autocommand um Pass-Through fær Brief automatisch zu aktivieren
autocmd LocationChange .* js modes.passAllKeys = /brief\.xul/.test(buffer.URL)