diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/general.vim | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/modules/general.vim b/modules/general.vim index 9c55b521..75b9cff8 100644 --- a/modules/general.vim +++ b/modules/general.vim @@ -74,9 +74,27 @@ tnoremap <C-h> <C-\><C-n><C-w>h  tnoremap <C-j> <C-\><C-n><C-w>j  tnoremap <C-k> <C-\><C-n><C-w>k  tnoremap <C-l> <C-\><C-n><C-w>l + +nnoremap <M-h> <C-w>h +nnoremap <M-j> <C-w>j +nnoremap <M-k> <C-w>k +nnoremap <M-l> <C-w>l + +nnoremap <D-h> <C-w>h +nnoremap <D-j> <C-w>j +nnoremap <D-k> <C-w>k +nnoremap <D-l> <C-w>l +  " TAB in general mode will move to text buffer  nnoremap <TAB> :bnext<CR>  " SHIFT-TAB will go back  nnoremap <S-TAB> :bprevious<CR> +" Copy paste between vim and everything else +set clipboard=unnamedplus +" hold when tabbing +vnoremap < <gv +vnoremap > >gv + +set conceallevel=0 | 
