Remap split movement in 'vimrc'

This commit is contained in:
Logan 2015-04-18 11:45:23 -07:00
parent cf7eddf2fd
commit ac01dc015b
1 changed files with 12 additions and 6 deletions

8
vimrc
View File

@ -58,7 +58,7 @@ let g:gitgutter_signs = 1
let g:gitgutter_highlight_lines = 0
""""""""Setup AutoClose""""""""
let g:AutoClosePairs = "() {} \" ` ' []"
let g:AutoClosePairs = "() {} \" ` ' [] <>"
""""""""Leader Commands""""""""
nnoremap <leader>n :NERDTreeToggle <CR>
@ -70,3 +70,9 @@ nnoremap <leader>x :x<CR>
nnoremap <leader>r :%s/
let g:ctrlp_map = '<leader>p'
let g:ctrlp_cmd = 'CtrlP'
""""""Remap split movement""""""
map <c-j> <c-w>j
map <c-k> <c-w>k
map <c-h> <c-w>h
map <c-l> <c-w>l