diff options
Diffstat (limited to 'vim')
-rw-r--r-- | vim/lazy/plugin/treesitter.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vim/lazy/plugin/treesitter.lua b/vim/lazy/plugin/treesitter.lua index dc0dafc..245ecb4 100644 --- a/vim/lazy/plugin/treesitter.lua +++ b/vim/lazy/plugin/treesitter.lua | |||
@@ -34,20 +34,20 @@ require('nvim-treesitter.configs').setup { | |||
34 | enable = true, | 34 | enable = true, |
35 | set_jumps = true, -- whether to set jumps in the jumplist | 35 | set_jumps = true, -- whether to set jumps in the jumplist |
36 | goto_next_start = { | 36 | goto_next_start = { |
37 | [']m'] = '@function.outer', | 37 | [']f'] = '@function.outer', |
38 | [']]'] = '@class.outer', | 38 | [']c'] = '@class.outer', |
39 | }, | 39 | }, |
40 | goto_next_end = { | 40 | goto_next_end = { |
41 | [']M'] = '@function.outer', | 41 | [']F'] = '@function.outer', |
42 | [']['] = '@class.outer', | 42 | [']C'] = '@class.outer', |
43 | }, | 43 | }, |
44 | goto_previous_start = { | 44 | goto_previous_start = { |
45 | ['[m'] = '@function.outer', | 45 | ['[f'] = '@function.outer', |
46 | ['[['] = '@class.outer', | 46 | ['[c'] = '@class.outer', |
47 | }, | 47 | }, |
48 | goto_previous_end = { | 48 | goto_previous_end = { |
49 | ['[M'] = '@function.outer', | 49 | ['[F'] = '@function.outer', |
50 | ['[]'] = '@class.outer', | 50 | ['[C'] = '@class.outer', |
51 | }, | 51 | }, |
52 | }, | 52 | }, |
53 | swap = { | 53 | swap = { |