about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/neovim/nixvim/plugins/harpoon
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/soispha/config/neovim/nixvim/plugins/harpoon')
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix
index 1f409530..cf0e6d82 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix
@@ -43,7 +43,7 @@ in {
     };
     maps.normalVisualOp =
       {
-        "gfn" = {
+        "-" = {
           action = ''
             function()
               require("harpoon.ui").nav_next()
@@ -52,7 +52,7 @@ in {
           lua = true;
           desc = "go to the next marked file";
         };
-        "gfp" = {
+        "_" = {
           action = ''
             function()
               require("harpoon.ui").nav_prev()
@@ -61,7 +61,7 @@ in {
           lua = true;
           desc = "go to the previous marked file";
         };
-        "gad" = {
+        "<leader><leader>" = {
           action = ''
             function()
               require("harpoon.mark").add_file()
@@ -79,7 +79,7 @@ in {
           lua = true;
           desc = "toggle the harpoon command quick menu to see all commands.";
         };
-        "gqn" = {
+        "<leader>q" = {
           action = ''
             function()
               require("harpoon.ui").toggle_quick_menu()