diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 0000000..8fd453b --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,10 @@ +return { + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "svelte", --- make sure you have svelte LSP, the rest is your treesitter plugins + } + } + } +};