From: Folke Lemaitre Date: Sat, 7 Jan 2023 09:53:15 +0000 (+0100) Subject: feat(treesitter): examples on how to setup treesitter X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=a41bda19f351a1e0b75eb9f229ec1b957ceada47;p=nvim-config.git feat(treesitter): examples on how to setup treesitter --- 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", + }, + }, +}