vim/config/maps.vim

17 lines
424 B
VimL
Raw Normal View History

2016-12-14 18:09:47 +00:00
" new tab
nmap <silent> <C-t> :tabnew<CR>
" new line shortcut (ctrl+o)
2016-12-15 13:01:58 +00:00
nnoremap <silent> <CR> o<CR><Esc>
2016-12-14 18:09:47 +00:00
" switch windows
2016-12-15 13:01:58 +00:00
" nmap <silent> <C-k> :wincmd k<CR>
" nmap <silent> <C-j> :wincmd j<CR>
" nmap <silent> <C-h> :wincmd h<CR>
" nmap <silent> <C-l> :wincmd l<CR>
2016-12-14 18:09:47 +00:00
" bind window : scroll + cursor
2016-12-15 13:01:58 +00:00
nmap <silent> <F10> :set scrollbind<CR>:set cursorbind<CR>
2016-12-14 18:09:47 +00:00
nmap <silent> <F12> :set noscrollbind<CR>:set nocursorbind<CR>