Add leader shortcuts

This commit is contained in:
flyingscorpio@arch-desktop 2020-06-21 17:13:55 +02:00
parent 477a1e8bcb
commit f71e3586b3

View file

@ -31,6 +31,11 @@ nmap <leader>y "*yy
" in normal mode <leader>p will paste from the selection clipboard
nmap <leader>p "*p
nnoremap <leader>h :wincmd h<CR>
nnoremap <leader>j :wincmd j<CR>
nnoremap <leader>k :wincmd k<CR>
nnoremap <leader>l :wincmd l<CR>
" }}}
" VUNDLE {{{
@ -162,7 +167,7 @@ set path+=**
set incsearch " search as characters are entered
set hlsearch " highlight matches
" turn off search hightlight after search with `,<space>`
" turn off search hightlight after search
nnoremap <leader><space> :nohlsearch<CR>
" }}}