astronvim_config/lua/plugins/treesitter.lua
2025-08-06 10:26:27 +02:00

20 lines
340 B
Lua

-- if true then return {} end
-- Customize Treesitter
---@type LazySpec
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"lua",
"vim",
"markdown",
-- add more arguments for adding more treesitter parsers
"selinux",
},
highlight = {
enable = true,
},
},
}