Make VimEnter on .ly files silent, remove VimLeave make clean

This commit is contained in:
flyingscorpio@pinebookpro 2021-08-18 08:43:54 +02:00
parent cc2409ebab
commit b78bc809dd

View file

@ -196,11 +196,9 @@ augroup configgroup
" Run Flake8 on write in python files
autocmd BufWritePost *.py call flake8#Flake8()
" Open pdf after entering .ly file for side-by-side
autocmd VimEnter *.ly ![ -f ./%:r.pdf ] && zathura %:r.pdf &
autocmd VimEnter *.ly silent ![ -f ./%:r.pdf ] && zathura %:r.pdf &
" Run lilypond after save on .ly files
autocmd BufWritePost *.ly !lilypond %
" Run make clean when leaving a LaTeX file if Makefile exists in directory
"autocmd VimLeave *.tex ![ -f ./Makefile ] && make clean
" Toggle relative number and absolute number according to focus and insert
autocmd BufEnter,FocusGained,InsertLeave * set relativenumber