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

treesitter.setup {
  indent = {
    enable = true
  },
  highlight = {
    enable = true,
    additional_vim_regex_highlighting = false
  }
}