fix(treesitter): enable setting and add vimdoc
parent
f142075daa
commit
937ad8a933
|
@ -1,6 +1,4 @@
|
||||||
if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
|
-- Customization of Treesitter
|
||||||
|
|
||||||
-- Example customization of Treesitter
|
|
||||||
---@type LazySpec
|
---@type LazySpec
|
||||||
return {
|
return {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
@ -9,7 +7,8 @@ return {
|
||||||
opts.ensure_installed = require("astrocore").list_insert_unique(
|
opts.ensure_installed = require("astrocore").list_insert_unique(
|
||||||
opts.ensure_installed,
|
opts.ensure_installed,
|
||||||
"lua",
|
"lua",
|
||||||
"vim"
|
"vim",
|
||||||
|
"vimdoc"
|
||||||
-- add more arguments for adding more treesitter parsers
|
-- add more arguments for adding more treesitter parsers
|
||||||
)
|
)
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in New Issue