add vim latex config

This commit is contained in:
Jidbo 2020-12-19 19:40:33 +01:00
parent 7a31cb8df2
commit 9b0686efef
Signed by untrusted user: jidbo
GPG key ID: 54C320BF0E44C5CA

View file

@ -51,8 +51,25 @@ let g:vimwiki_list = [{'path': '~/.wiki/'}]
" VIMTEX SETUP
" =========================
let g:vimtex_compile_progname = 'nvr'
let g:vimtex_compiler_engine = 'lualatex'
let g:vimtex_quickfix_mode = 0
let g:tex_flavor = 'latex'
let g:vimtex_compiler_method = 'latexmk'
let g:vimtex_compiler_latexmk = {
\ 'backend' : 'nvim',
\ 'background' : 1,
\ 'build_dir' : '',
\ 'callback' : 1,
\ 'continuous' : 1,
\ 'executable' : 'latexmk',
\ 'hooks' : [],
\ 'options' : [
\ '-pdflatex=lualatex',
\ '-file-line-error',
\ '-synctex=1',
\ '-interaction=nonstopmode',
\ ],
\}
" COLORS.LUA SETUP
" =========================