From e3fd03ecbd26e8be3cc0684e2839c1e9cf83c537 Mon Sep 17 00:00:00 2001 From: Yaser Alraddadi Date: Sun, 16 Feb 2025 23:25:53 +0300 Subject: [PATCH] update --- lua/custom/plugins/harpoon.lua | 4 ++-- lua/custom/plugins/symbols.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/custom/plugins/harpoon.lua b/lua/custom/plugins/harpoon.lua index decb2ab5..e41e54b6 100644 --- a/lua/custom/plugins/harpoon.lua +++ b/lua/custom/plugins/harpoon.lua @@ -5,10 +5,10 @@ return { dependencies = { 'nvim-lua/plenary.nvim' }, init = function() local harpoon = require 'harpoon' - vim.keymap.set('n', 'hh', function() + vim.keymap.set('n', 'jj', function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) - vim.keymap.set('n', 'ha', function() + vim.keymap.set('n', 'ja', function() harpoon:list():add() end) diff --git a/lua/custom/plugins/symbols.lua b/lua/custom/plugins/symbols.lua index b1fd0baf..2f903a13 100644 --- a/lua/custom/plugins/symbols.lua +++ b/lua/custom/plugins/symbols.lua @@ -22,7 +22,7 @@ return { -- === Suggested Keymaps: === local namu = require 'namu.namu_symbols' local colorscheme = require 'namu.colorscheme' - vim.keymap.set('n', 'gs', ':Namu symbols', { + vim.keymap.set('n', 'js', ':Namu symbols', { desc = 'Jump to LSP symbol', silent = true, })