mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-08 13:10:37 +00:00
b1335a3628
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
10 lines
319 B
VimL
10 lines
319 B
VimL
" LaTex settings
|
|
let g:vimtex_view_method='zathura'
|
|
let g:Tex_DefaultTargetFormat='pdf'
|
|
let g:Tex_MultipleCompileFormats='pdf, aux'
|
|
let g:vimtex_compiler_progname='nvr'
|
|
|
|
" YAML settings
|
|
au! BufNewFile,BufReadPost *.{yaml,yml} set filetype=yaml foldmethod=indent
|
|
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
|