aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugin/treesitter.lua
blob: a6a4bf88053cecf4222f3a15f919cce0e70e6b69 (plain)
1
2
3
4
5
6
7
8
9
require("nvim-treesitter.configs").setup {
  ensure_installed = { "c", "rust", "lua", "vimdoc" },
  sync_install = false,
  highlight = {
    enable = true,
    additional_vim_regex_highlighting = true,
  },
  indent = { enable = true },
}