From 0ac07e42562eaa0ba2ae751fa9effa31c1083539 Mon Sep 17 00:00:00 2001 From: Drew Haven Date: Thu, 26 Jun 2025 17:46:17 -0700 Subject: [PATCH] Ensure some grammars are installed for treesitter --- .../neovim/config/lua/plugins/treesitter.lua | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 home-manager/features/neovim/config/lua/plugins/treesitter.lua diff --git a/home-manager/features/neovim/config/lua/plugins/treesitter.lua b/home-manager/features/neovim/config/lua/plugins/treesitter.lua new file mode 100644 index 0000000..14aa323 --- /dev/null +++ b/home-manager/features/neovim/config/lua/plugins/treesitter.lua @@ -0,0 +1,24 @@ +return { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "astro", + "bash", + "html", + "css", + "less", + "javascript", + "json", + "lua", + "markdown", + "markdown_inline", + "python", + "query", + "regex", + "tsx", + "typescript", + "vim", + "yaml", + }, + }, +}