18 lines
342 B
Lua
Executable file
18 lines
342 B
Lua
Executable file
require("nvim-treesitter.configs").setup({
|
|
-- A list of parser names, or "all"
|
|
ensure_installed = {
|
|
"nix",
|
|
"lua",
|
|
"vim",
|
|
},
|
|
|
|
-- Install parsers synchronously (only applied to `ensure_installed`)
|
|
sync_install = false,
|
|
auto_install = true,
|
|
highlight = {
|
|
enable = true,
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
})
|