vim: add tab navigation controls

This commit is contained in:
Franzi 2021-02-15 09:59:11 +01:00
parent 8370b333af
commit d25fac5f2d
Signed by untrusted user: kunsi
GPG Key ID: 12E3D2136B818350
1 changed files with 6 additions and 1 deletions

7
.vimrc
View File

@ -9,7 +9,8 @@ set softtabstop=4
set linespace=0
set autoindent
set smartindent
set mouse=a
set mouse=
set ttymouse=
set cursorline
syntax on
set showcmd
@ -31,3 +32,7 @@ noremap d l
noremap t k
noremap r j
noremap n h
map <C-n> :tabr<cr>
map <C-r> :tabn<cr>
map <C-t> :tabp<cr>
map <C-d> :tabl<cr>