Merge branch 'master' of github.com:Jab2870/vim

This commit is contained in:
Jonathan Hodgson 2018-02-12 09:28:04 +00:00
commit ae88b1140a

5
.vimrc
View file

@ -275,7 +275,7 @@ function! NewLatex()
endfunction
" Mappings {{{1
" Move lines up/down using arrow keys
" Move lines up/down/left/right using arrow keys
nnoremap <Down> ddp
nnoremap <Up> ddkP
nnoremap <Right> xp
@ -319,6 +319,9 @@ nnoremap <leader>sv :source $MYVIMRC<cr>
nnoremap <CR> o<Esc>
nnoremap <S-Enter> O<Esc>
" Make jj in insert mode go to normal mode
inoremap jj <Esc>
" Set double space in insert mode to go to next mark and enter insert mode
"inoremap <leader><leader> <Esc>:call NextMark()<cr>