diff options
author | Brahmajit Das <listout@listout.xyz> | 2025-06-04 01:31:19 +0530 |
---|---|---|
committer | Brahmajit Das <listout@listout.xyz> | 2025-06-04 01:31:19 +0530 |
commit | f241f69758bb8f7fbcfccd9735aea3f75b3e30cf (patch) | |
tree | 0c59c9f1a226a26656dedd0d5dd17f250dde9ee4 /after/ftplugin/tex.vim | |
parent | 3ae0f35c445b97a51fdc866994465b722d318d72 (diff) |
after: ftplugin: tex: Setting tex flavor and default viewer
Setting tex flavor to xelatex and default viewer to zathura
Signed-off-by: Brahmajit Das <listout@listout.xyz>
Diffstat (limited to 'after/ftplugin/tex.vim')
-rw-r--r-- | after/ftplugin/tex.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/after/ftplugin/tex.vim b/after/ftplugin/tex.vim index 895fcd9..b405d81 100644 --- a/after/ftplugin/tex.vim +++ b/after/ftplugin/tex.vim @@ -14,3 +14,6 @@ let g:vimtex_quickfix_ignore_filters = [ \ 'Over-specification in `v', \ '\\headheight is too small' \] + +let g:tex_flavor = "xelatex" +let g:vimtex_view_general_viewer = 'zathura' |