dotfiles/roles/neovim/files/after/plugin/treesitter.lua

19 lines
310 B
Lua
Raw Normal View History

local status_ok, configs = pcall(require, "nvim-treesitter.configs")
if not status_ok then
return
end
configs.setup {
context_commenting = {
2022-01-09 00:07:35 +00:00
enable = true,
},
ensure_installed = "maintained",
highlight = {
enable = true,
},
indent = {
disable = { "yaml" },
enable = true,
2022-01-09 00:07:35 +00:00
},
}