vim/ftplugin/tex.vim
Steins7 df4e455fb6 Added project configuration
+ added support for .project.vim config files
* fixed minor issues
2021-09-14 21:07:22 +02:00

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',
\ ],
\}