From f3e13c4f6fe530abbe1cb0b175200ac3467926b5 Mon Sep 17 00:00:00 2001 From: Thibault Barnouin Date: Wed, 19 Jun 2024 08:58:49 +0200 Subject: [PATCH] fix vimtex --- .config/nvim/after/plugin/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/after/plugin/treesitter.lua b/.config/nvim/after/plugin/treesitter.lua index 7dc2427..0275e1a 100644 --- a/.config/nvim/after/plugin/treesitter.lua +++ b/.config/nvim/after/plugin/treesitter.lua @@ -19,6 +19,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 + disable = {"latex"}, additional_vim_regex_highlighting = false, }, } @@ -53,4 +54,3 @@ local autoCommands = { } M.nvim_create_augroups(autoCommands) -