vim: add tab navigation controls
This commit is contained in:
parent
8370b333af
commit
d25fac5f2d
1 changed files with 6 additions and 1 deletions
7
.vimrc
7
.vimrc
|
@ -9,7 +9,8 @@ set softtabstop=4
|
||||||
set linespace=0
|
set linespace=0
|
||||||
set autoindent
|
set autoindent
|
||||||
set smartindent
|
set smartindent
|
||||||
set mouse=a
|
set mouse=
|
||||||
|
set ttymouse=
|
||||||
set cursorline
|
set cursorline
|
||||||
syntax on
|
syntax on
|
||||||
set showcmd
|
set showcmd
|
||||||
|
@ -31,3 +32,7 @@ noremap d l
|
||||||
noremap t k
|
noremap t k
|
||||||
noremap r j
|
noremap r j
|
||||||
noremap n h
|
noremap n h
|
||||||
|
map <C-n> :tabr<cr>
|
||||||
|
map <C-r> :tabn<cr>
|
||||||
|
map <C-t> :tabp<cr>
|
||||||
|
map <C-d> :tabl<cr>
|
||||||
|
|
Loading…
Reference in a new issue