diff options
Diffstat (limited to 'lua/plugins/treesitter.lua')
| -rw-r--r-- | lua/plugins/treesitter.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index fa64a8d..845ba05 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -11,7 +11,7 @@ return { ignore_install = { 'latex' }, highlight = { enable = true, - additional_vim_regex_highlighting = false, + additional_vim_regex_highlighting = { 'latex' }, }, indent = { enable = true, disable = { 'python' } }, ensure_installed = { @@ -26,7 +26,7 @@ return { }, }, config = function(_, opts) - require("nvim-treesitter.configs").setup(opts) + require('nvim-treesitter.configs').setup(opts) end, }, { |
