aboutsummaryrefslogtreecommitdiff
path: root/nvim/nvchad/lua/plugins/configs/treesitter.lua
blob: b21b55de4d69b80b28c448990bd6a9c386ac6c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
local options = {
  ensure_installed = { "lua" },

  highlight = {
    enable = true,
    use_languagetree = true,
  },

  indent = { enable = true },
}

return options