File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ require'telescope'.load_extension'pathogen'
8787
8888local treesitter = require ' nvim-treesitter.configs'
8989treesitter .setup {
90- ensure_installed = {' cpp' , ' python' },
90+ ensure_installed = {' cpp' , ' python' , ' rust ' },
9191 highlight = { enable = true },
9292 incremental_selection = {
9393 enable = true ,
@@ -112,20 +112,20 @@ treesitter.setup {
112112 enable = true ,
113113 set_jumps = true ,
114114 goto_next_start = {
115- [' ]m ' ] = ' @class.outer' ,
115+ [' ]c ' ] = ' @class.outer' ,
116116 [' ]]' ] = ' @function.outer' ,
117117 [' ]o' ] = ' @loop.*' ,
118118 },
119119 goto_next_end = {
120- [' ]M ' ] = ' @class.outer' ,
120+ [' ]C ' ] = ' @class.outer' ,
121121 },
122122 goto_previous_start = {
123- [' [m ' ] = ' @class.outer' ,
123+ [' [c ' ] = ' @class.outer' ,
124124 [' [[' ] = ' @function.outer' ,
125125 [' [o' ] = ' @loop.*' ,
126126 },
127127 goto_previous_end = {
128- [' [M ' ] = ' @class.outer' ,
128+ [' [C ' ] = ' @class.outer' ,
129129 },
130130 },
131131 select = {
You can’t perform that action at this time.
0 commit comments