summary refs log tree commit diff
path: root/.vim/lua/plugins/_treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua/plugins/_treesitter.lua')
-rw-r--r--.vim/lua/plugins/_treesitter.lua42
1 files changed, 21 insertions, 21 deletions
diff --git a/.vim/lua/plugins/_treesitter.lua b/.vim/lua/plugins/_treesitter.lua
index ef24286..c5225bc 100644
--- a/.vim/lua/plugins/_treesitter.lua
+++ b/.vim/lua/plugins/_treesitter.lua
@@ -1,24 +1,24 @@
 
 require('nvim-treesitter.configs').setup {
-	ensure_installed = { "c", "c_sharp", "javascript", "lua", "bash" },
-	highlight = {
-		enable = false,
-	},
-	indent = {
-		enable = true,
-	},
-	refactor = {
-		navigation = {
-			enable = true,
-			keymaps = {
-				goto_definition = "<c-]>",
-			},
-		},
-		smart_rename = {
-			enable = true,
-			keymaps = {
-				smart_rename = "grr",
-			},
-		},
-	},
+  ensure_installed = { "c", "c_sharp", "lua", "bash" },
+  highlight = {
+    enable = false,
+  },
+  indent = {
+    enable = true,
+  },
+  refactor = {
+    navigation = {
+      enable = true,
+      keymaps = {
+        goto_definition = "<c-]>",
+      },
+    },
+    smart_rename = {
+      enable = true,
+      keymaps = {
+        smart_rename = "grr",
+      },
+    },
+  },
 }