diff options
author | listout <listout@protonmail.com> | 2022-05-05 20:20:03 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-05-05 20:20:03 +0530 |
commit | 6a811c9d732a77625629c641215032394fb18721 (patch) | |
tree | e3e58d36e44d210222017729d48bde2fac23d91a /init.vim | |
parent | e2512e5ecef9b3d001c1f17d42a1ddbaf3719d7b (diff) |
nvim: init: Removing vimtex configuration
This is causing issues with latex in Gentoo, too busy to investigate.
Maybe a @TODO
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'init.vim')
-rw-r--r-- | init.vim | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -31,16 +31,6 @@ let g:markdown_syntax_conceal = 1 let g:markdown_minlines = 100 let g:tex_flavor='latex' -let g:vimtex_compiler_latexmk = { - \ 'executable' : 'latexmk', - \ 'options' : [ - \ '-shell-escape', - \ '-verbose', - \ '-file-line-error', - \ '-synctex=1', - \ '-interaction=nonstopmode', - \ ], - \} "let ch_syntax_for_h = 1 @@ -89,7 +79,7 @@ require'nvim-treesitter.configs'.setup { -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). -- Using this option may slow down your editor, and you may see some duplicate highlights. -- Instead of true it can also be a list of languages - additional_vim_regex_highlighting = false, + additional_vim_regex_highlighting = true, }, } EOF |