diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-10 15:28:07 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-10 15:28:07 +0100 |
commit | cd287ac79860326e5bb6d852db29aa37b5e00757 (patch) | |
tree | 9cfc2876946cc5e29453f4e0c66cbeb2c5469326 /.config/nvim/after/plugin | |
parent | 8382337d3efeda8cf01526054c647e5988c47141 (diff) |
nvim: Improve GSP support
Diffstat (limited to '.config/nvim/after/plugin')
-rw-r--r-- | .config/nvim/after/plugin/treesitter.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/nvim/after/plugin/treesitter.lua b/.config/nvim/after/plugin/treesitter.lua index 1ffb294..e069683 100644 --- a/.config/nvim/after/plugin/treesitter.lua +++ b/.config/nvim/after/plugin/treesitter.lua @@ -61,6 +61,8 @@ require('nvim-treesitter.configs').setup { ['if'] = '@function.inner', ['an'] = '@node.outer', ['in'] = '@node.inner', + ['at'] = '@text.outer', + ['it'] = '@text.outer', }, }, move = { @@ -71,25 +73,33 @@ require('nvim-treesitter.configs').setup { [']f'] = '@function.outer', [']b'] = '@block.outer', [']n'] = '@node.outer', + [']t'] = '@text.outer', }, goto_next_end = { [']C'] = '@comment.outer', [']F'] = '@function.outer', [']B'] = '@block.outer', [']N'] = '@node.outer', + [']T'] = '@text.outer', }, goto_previous_start = { ['[c'] = '@comment.outer', ['[f'] = '@function.outer', ['[b'] = '@block.outer', ['[n'] = '@node.outer', + ['[t'] = '@text.outer', }, goto_previous_end = { ['[C'] = '@comment.outer', ['[F'] = '@function.outer', ['[B'] = '@block.outer', ['[N'] = '@node.outer', + ['[T'] = '@text.outer', }, }, }, + + indent = { + enable = true, + }, } |