diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 0000000..6797338 --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,24 @@ +return { + + -- treesitter + { + "nvim-treesitter/nvim-treesitter", + ensure_installed = { + "bash", + "help", + "html", + "javascript", + "json", + "lua", + "markdown", + "markdown_inline", + "python", + "query", + "regex", + "tsx", + "typescript", + "vim", + "yaml", + }, + }, +}