2021-12-23 23:13:45 +00:00
|
|
|
local status_ok, configs = pcall(require, "nvim-treesitter.configs")
|
|
|
|
if not status_ok then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
configs.setup {
|
2021-11-17 09:00:00 +00:00
|
|
|
context_commenting = {
|
2022-01-09 00:07:35 +00:00
|
|
|
enable = true,
|
2021-11-17 09:00:00 +00:00
|
|
|
},
|
|
|
|
ensure_installed = "maintained",
|
|
|
|
highlight = {
|
|
|
|
enable = true,
|
2021-12-24 13:00:00 +00:00
|
|
|
},
|
|
|
|
indent = {
|
2022-01-03 20:46:22 +00:00
|
|
|
disable = { "yaml" },
|
2021-12-24 13:00:00 +00:00
|
|
|
enable = true,
|
2022-01-09 00:07:35 +00:00
|
|
|
},
|
2021-11-17 09:00:00 +00:00
|
|
|
}
|