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.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/.vim/lua/plugins/_treesitter.lua b/.vim/lua/plugins/_treesitter.lua
deleted file mode 100644
index c5225bc..0000000
--- a/.vim/lua/plugins/_treesitter.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-
-require('nvim-treesitter.configs').setup {
-  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",
-      },
-    },
-  },
-}