mirror of
https://github.com/duma799/hyprduma-config.git
synced 2026-05-14 06:31:00 +00:00
13 lines
260 B
Lua
13 lines
260 B
Lua
|
|
return {
|
||
|
|
"nvim-treesitter/nvim-treesitter",
|
||
|
|
build = ":TSUpdate",
|
||
|
|
config = function()
|
||
|
|
local config = require("nvim-treesitter.configs")
|
||
|
|
config.setup({
|
||
|
|
auto_install = false,
|
||
|
|
highlight = { enable = true },
|
||
|
|
indent = { enable = true },
|
||
|
|
})
|
||
|
|
end,
|
||
|
|
}
|