From 937ad8a93351af06f33ca1ce4027b62a89c4f83e Mon Sep 17 00:00:00 2001 From: Fuyang Liu Date: Sun, 28 Jan 2024 21:23:24 +0100 Subject: [PATCH] fix(treesitter): enable setting and add vimdoc --- lua/plugins/treesitter.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index f93f5c7..bc19a0e 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,6 +1,4 @@ -if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE - --- Example customization of Treesitter +-- Customization of Treesitter ---@type LazySpec return { "nvim-treesitter/nvim-treesitter", @@ -9,7 +7,8 @@ return { opts.ensure_installed = require("astrocore").list_insert_unique( opts.ensure_installed, "lua", - "vim" + "vim", + "vimdoc" -- add more arguments for adding more treesitter parsers ) end,