Add mappings to switch windows more succinctly

This commit is contained in:
Elliot Winkler 2013-05-14 11:21:00 -06:00
parent cb6170d2f8
commit 9a0c71eccf

6
vimrc
View file

@ -119,6 +119,12 @@ au BufRead,BufNewFile *.md setlocal textwidth=80
set splitbelow
set splitright
" Quicker window movement
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-h> <C-w>h
nnoremap <C-l> <C-w>l
" configure syntastic syntax checking to check on open as well as save
let g:syntastic_check_on_open=1