summaryrefslogtreecommitdiff
path: root/lua/treesitter.lua
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-02-15 08:52:32 +0000
committerAkshay <[email protected]>2021-02-15 08:52:32 +0000
commitfcaf13a267b7bacd26ad8b2e952a793645e42bba (patch)
tree6e795b46b1fbefb05151e95c0346951d67fac4e7 /lua/treesitter.lua
init
Diffstat (limited to 'lua/treesitter.lua')
-rw-r--r--lua/treesitter.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/lua/treesitter.lua b/lua/treesitter.lua
new file mode 100644
index 0000000..d503b46
--- /dev/null
+++ b/lua/treesitter.lua
@@ -0,0 +1,18 @@
1require'nvim-treesitter.configs'.setup {
2 highlight = {
3 enable = true,
4
5 },
6 incremental_selection = {
7 enable = true,
8 keymaps = {
9 init_selection = "gnn",
10 node_incremental = "g}",
11 scope_incremental = "grc",
12 node_decremental = "g{",
13 },
14 },
15 indent = {
16 enable = false
17 }
18}