aboutsummaryrefslogtreecommitdiff
path: root/lua/user/treesitter.lua
blob: ede899950d78737290448ba442d10badd1e79b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
local status_ok, configs = pcall(require, "nvim-treesitter.configs")
if not status_ok then
  return
end

configs.setup {
  ensure_installed = "maintained",
  sync_install = false,
  ignore_install = { "" },
  highlight = {
	enable = true,
	disable = { "" },
	additional_vim_regex_highlighting = true,
  },
  indent = { enable = true, disable = { "yaml" } },
}