nvim/nvim/lua/plugins/treesitter.lua
2025-03-17 11:04:22 +01:00

27 lines
425 B
Lua
Executable File

return {
-- syntax highlighting
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"bash",
"c",
"cpp",
"hyprlang",
"javascript",
"json",
"lua",
"python",
"typescript",
},
sync_install = false,
highlight = {
enable = true,
disable = { "tex" }
},
})
end,
}