30 lines
628 B
VimL
30 lines
628 B
VimL
"---- configuration
|
|
|
|
set colorcolumn=81
|
|
set textwidth=80
|
|
set formatoptions+=t
|
|
set enc=utf-8
|
|
|
|
"---- plugins
|
|
|
|
"vimtex
|
|
let g:vimtex_fold_enable = 1
|
|
let g:tex_flavor = 'latex'
|
|
let g:vimtex_view_general_viewer = 'evince'
|
|
let g:vimtex_compiler_method = 'latexmk'
|
|
let g:vimtex_compiler_latexmk = {
|
|
\ 'build_dir' : 'bin',
|
|
\ 'callback' : 1,
|
|
\ 'continuous' : 1,
|
|
\ 'executable' : 'latexmk',
|
|
\ 'hooks' : [],
|
|
\ 'options' : [
|
|
\ '-verbose',
|
|
\ '-file-line-error',
|
|
\ '-synctex=1',
|
|
\ '-interaction=nonstopmode',
|
|
\ '-shell-escape',
|
|
\ ],
|
|
\}
|
|
|