Add movement map, make map, clean VimLeave

This commit is contained in:
flyingscorpio@arch-desktop 2020-10-23 12:47:19 +02:00
parent 2dfe727875
commit ad59db816b

View file

@ -20,6 +20,9 @@ imap <F2> <ESC>:w<CR>i
" global copy/paste
nmap <leader>y "*yy
nmap <leader>p "*p
" compile
nmap <leader>c :w<CR>:!make<CR>
" }}}
" VIM-PLUG {{{
call plug#begin('~/.vim/plugged')
@ -129,6 +132,10 @@ nnoremap <space> za
" move vertically by visual line (don't jump wrapped lines)
nnoremap j gj
nnoremap k gk
map <C-h> <C-w>h
map <C-j> <C-w>j
map <C-k> <C-w>k
map <C-l> <C-w>l
" }}}
" AUTOGROUPS {{{
augroup configgroup
@ -146,8 +153,8 @@ augroup configgroup
autocmd BufWritePre * :StripWhitespace
" Run Flake8 on write in python files
autocmd BufWritePost *.py call flake8#Flake8()
" Run make on write in LaTeX files if Makefile exists in directory
autocmd BufWritePost *.tex ![ -f ./Makefile ] && make || echo "No Makefile"
" Run make clean when leaving a LaTeX file if Makefile exists in directory
autocmd VimLeave *.tex ![ -f ./Makefile ] && make clean || echo "No Makefile"
" Toggle relative number and absolute number according to focus and insert
autocmd BufEnter,FocusGained,InsertLeave * set relativenumber