blob: 98971ab81fd4779747d5c5798fa9c969b8c1454e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
" LaTeX related config
" Last Changed: 2021-04-21
" Author: Federico Igne <>
" License: This file is placed in the public domain.
" Add grammar check support via Language Tools
packadd vim-grammarous
" Set default compiler to generate a pdf.
setlocal makeprg=latexmk\ -pdf\ %
" Open generated pdf with Zathura (works if you are editing the main tex
" file)
nnoremap <leader>co :! zathura %:p:r.pdf &<cr>
|