From e3f222487a57b2f3f995628630cd9ae65c3a210b Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Fri, 22 May 2026 17:06:16 -0500 Subject: new super fancy loader more akin to lazy.nvim --- lua/tjk/plugins/treesitter.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lua/tjk/plugins/treesitter.lua (limited to 'lua/tjk/plugins/treesitter.lua') diff --git a/lua/tjk/plugins/treesitter.lua b/lua/tjk/plugins/treesitter.lua new file mode 100644 index 0000000..d35107b --- /dev/null +++ b/lua/tjk/plugins/treesitter.lua @@ -0,0 +1,24 @@ +return { + "nvim-treesitter.configs", + "https://github.com/nvim-treesitter/nvim-treesitter", + setup = { + highlight = { enable = true, disable = { "yaml", "dockerfile" } }, + --indent = { enable = true }, -- FIXME + }, + dependents = { + { + "nvim-ts-autotag", + "https://github.com/windwp/nvim-ts-autotag", + setup = { + per_filetype = { ["html"] = { enable_close = true } }, + }, + }, + { + "rainbow-delimiters.setup", + "https://github.com/HiPhish/rainbow-delimiters.nvim" + }, + }, + loadFn = function() + vim.g._ts_force_sync_parsing = true -- #32660 + end, +} -- cgit v1.2.3