lazyvim-starter

My configuration changes to https://github.com/LazyVim/starter
git clone https://git.eamoncaddigan.net/lazyvim-starter.git
Log | Files | Refs | README | LICENSE

commit a41bda19f351a1e0b75eb9f229ec1b957ceada47
parent 840f8dee5bbfbd2f04c1a53e5c45798a0ef22ac5
Author: Folke Lemaitre <folke.lemaitre@gmail.com>
Date:   Sat,  7 Jan 2023 10:53:15 +0100

feat(treesitter): examples on how to setup treesitter

Diffstat:
Alua/plugins/treesitter.lua | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/lua/plugins/treesitter.lua 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", + }, + }, +}