summaryrefslogtreecommitdiff
path: root/lua/user/treesitter.lua
blob: 063e414fa27c7b9e0aa23139b06065824ec3def7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local configs = require("nvim-treesitter.configs")
configs.setup {
  ensure_installed = "",
  sync_install = false,
  ignore_install = { "" }, -- List of parsers to ignore installing
  highlight = {
    enable = false, -- false will disable the whole extension
    disable = { "" }, -- list of language that will be disabled
    additional_vim_regex_highlighting = true,

  },
  indent = { enable = false, },
}