summaryrefslogtreecommitdiff
path: root/lua/treesitter.lua
blob: d503b465371b83de4b5a8965952f9cb4495c6201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require'nvim-treesitter.configs'.setup {
  highlight = {
    enable = true,

  },
  incremental_selection = {
      enable = true,
      keymaps = {
          init_selection = "gnn",
          node_incremental = "g}",
          scope_incremental = "grc",
          node_decremental = "g{",
      },
  },
  indent = {
      enable = false
  }
}