aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/lazy
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2024-06-09 17:46:25 +0800
committerHsieh Chin Fan <pham@topo.tw>2024-06-09 17:46:25 +0800
commite5dcd8e8bb0bcecc125515b5cbef7b366e04b1b8 (patch)
treed48de95671e66fcdef76b663dae6e7b49257309b /vim/lazy
parent21d4a481a99b41c126bd6db3f5cb0413401280c3 (diff)
Update
Diffstat (limited to 'vim/lazy')
-rw-r--r--vim/lazy/plugin/treesitter.lua16
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 = {