summary refs log tree commit diff
path: root/.vim/lua/conf/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua/conf/treesitter.lua')
-rw-r--r--.vim/lua/conf/treesitter.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/.vim/lua/conf/treesitter.lua b/.vim/lua/conf/treesitter.lua
deleted file mode 100644
index fed55e1..0000000
--- a/.vim/lua/conf/treesitter.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-
-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",
-			},
-		},
-	},
-}