14 lines
330 B
Lua
14 lines
330 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
-- Important: On NixOS, we don't want lazy to build it
|
|
build = false,
|
|
lazy = false,
|
|
config = function()
|
|
require("nvim-treesitter").setup({
|
|
-- Disable auto_install so it doesn't try to use 'git' or 'curl'
|
|
auto_install = false,
|
|
highlight = { enable = true },
|
|
})
|
|
end,
|
|
}
|