summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/treesitter.lua
blob: 73b2e05d600bd7bec95f1ebd978ff6dd4538e402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
return {
  'nvim-treesitter/nvim-treesitter',
  build = ':TSUpdate',
  main = 'nvim-treesitter.configs',
  opts = {
    ensure_installed = { 'bash', 'c', 'zig', 'diff', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' },
    auto_install = true,
    highlight = {
      enable = true,
    },
  },
}