From 6f136ece839622fc51fbdced3292f2cc8352b642 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Sat, 29 Jul 2023 20:09:30 +0300 Subject: [PATCH] treesitter-autotag --- config/nvim/lua/core/plugin_config/treesitter.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/nvim/lua/core/plugin_config/treesitter.lua b/config/nvim/lua/core/plugin_config/treesitter.lua index 79b4871c..9dd8cbc9 100644 --- a/config/nvim/lua/core/plugin_config/treesitter.lua +++ b/config/nvim/lua/core/plugin_config/treesitter.lua @@ -6,11 +6,15 @@ require'nvim-treesitter.configs'.setup{ "c_sharp", "lua", "python", - "vim"}, + "nix" + }, -- Install parsers synchronously (only applied to 'ensure_installed) sync_install = false, auto_install = true, + autotag = { + enable = true, + }, highlight = { enable = true, },