summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/user/plugins/treesitter.lua
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-11-22 15:02:31 +0100
committeryuzu-eva <stevenhu@web.de>2023-11-22 15:02:31 +0100
commitfc808ae714f1e629081c5d5cfc240e3f444598f2 (patch)
treece616daed7ed3610bfedf79f7d52d06457e4894e /.config/nvim/lua/user/plugins/treesitter.lua
parent73db28ea4d42fd6100f4d670473196e8d46cbe70 (diff)
went back to vim
Diffstat (limited to '.config/nvim/lua/user/plugins/treesitter.lua')
-rw-r--r--.config/nvim/lua/user/plugins/treesitter.lua31
1 files changed, 0 insertions, 31 deletions
diff --git a/.config/nvim/lua/user/plugins/treesitter.lua b/.config/nvim/lua/user/plugins/treesitter.lua
deleted file mode 100644
index 32c74ee..0000000
--- a/.config/nvim/lua/user/plugins/treesitter.lua
+++ /dev/null
@@ -1,31 +0,0 @@
-require('nvim-treesitter.configs').setup {
- indent = {
- enable = true,
- disable = { 'html' },
- },
- highlight = {
- enable = true,
- disable = { 'NvimTree' },
- additional_vim_regex_highlighting = true,
- },
- textobjects = {
- select = {
- enable = true,
- lookahead = true,
- keymaps = {
- ['ia'] = '@parameter.inner',
- -- ['aa'] = {
- -- php = "" '@parameter.outer',
-
- -- python = "(function_definition) @function",
- -- cpp = "(function_definition) @function",
- -- c = "(function_definition) @function",
- -- java = "(method_declaration) @function",
- -- },
- },
- },
- },
- context_commentstring = {
- enable = true,
- },
-}