mirror of
https://github.com/Xevion/astronvim_config.git
synced 2025-12-06 11:14:23 -06:00
14 lines
228 B
Lua
14 lines
228 B
Lua
-- Customize Treesitter
|
|
|
|
---@type LazySpec
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"lua",
|
|
"vim",
|
|
-- add more arguments for adding more treesitter parsers
|
|
},
|
|
},
|
|
}
|