fix(treesitter): enable setting and add vimdoc

pull/6/head
Fuyang Liu 2024-01-28 21:23:24 +01:00
parent f142075daa
commit 937ad8a933
1 changed files with 3 additions and 4 deletions

View File

@ -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,