astronvim_config/lua/plugins/treesitter.lua

21 lines
340 B
Lua
Raw Permalink Normal View History

2025-08-06 10:26:27 +02:00
-- if true then return {} end
2025-06-30 13:45:29 +02:00
-- Customize Treesitter
---@type LazySpec
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"lua",
"vim",
"markdown",
-- add more arguments for adding more treesitter parsers
2025-08-06 10:26:27 +02:00
"selinux",
2025-06-30 13:45:29 +02:00
},
highlight = {
enable = true,
},
},
}