From f40015b2bf63c1957c30e8b53b552c0a4188e064 Mon Sep 17 00:00:00 2001 From: shepherdwind Date: Mon, 8 Apr 2024 23:36:36 +0800 Subject: [PATCH] chore: add svelte treesitter plugin --- lua/plugins/treesitter.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/treesitter.lua 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 + } + } + } +};