add vim latex config
This commit is contained in:
parent
7a31cb8df2
commit
9b0686efef
1 changed files with 18 additions and 1 deletions
|
@ -51,8 +51,25 @@ let g:vimwiki_list = [{'path': '~/.wiki/'}]
|
||||||
" VIMTEX SETUP
|
" 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: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
|
" COLORS.LUA SETUP
|
||||||
" =========================
|
" =========================
|
||||||
|
|
Loading…
Add table
Reference in a new issue