diff --git a/config/nvim/lua/user/plugins/treesitter.lua b/config/nvim/lua/user/plugins/treesitter.lua index 01fbf4a..7190a5f 100644 --- a/config/nvim/lua/user/plugins/treesitter.lua +++ b/config/nvim/lua/user/plugins/treesitter.lua @@ -83,9 +83,9 @@ local config = function() }, } - vim.keymap.set('n', 'sp', 'TSPlaygroundToggle') - vim.keymap.set('n', 'sh', 'TSHighlightCapturesUnderCursor') - vim.keymap.set('n', 'sn', 'TSNodeUnderCursor') + vim.keymap.set('n', 'tp', 'TSPlaygroundToggle') + vim.keymap.set('n', 'th', 'TSHighlightCapturesUnderCursor') + vim.keymap.set('n', 'tn', 'TSNodeUnderCursor') end return {