dotfiles/nvim.configlink/settings/latex.vim

11 lines
370 B
VimL
Raw Normal View History

2021-04-12 00:49:42 +00:00
" LaTeX Settings
"---------------
" LaTeX Hotkeys
autocmd FileType tex inoremap ;bf \textbf{}<Esc>i
" Jump to the next occurence of <> and replace it with insert mode
autocmd FileType tex nnoremap <Leader><Space> /<><Esc>:noh<CR>c2l
" Autocompile LaTeX on save
autocmd BufWritePost *.tex silent! execute "!pdflatex -output-directory=%:p:h % >/dev/null 2>&1" | redraw!