From 8b7b83f09589ae8a65f49243b0ef04e7be24bd19 Mon Sep 17 00:00:00 2001 From: Aditya Date: Wed, 6 Mar 2024 19:19:55 +0530 Subject: [PATCH] add harpoon --- config/default.nix | 1 + config/utils/harpoon.nix | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 config/utils/harpoon.nix diff --git a/config/default.nix b/config/default.nix index ae82d74..7cf3880 100644 --- a/config/default.nix +++ b/config/default.nix @@ -55,5 +55,6 @@ ./utils/better-escape.nix ./utils/flash.nix ./utils/hardtime.nix + ./utils/harpoon.nix ]; } diff --git a/config/utils/harpoon.nix b/config/utils/harpoon.nix new file mode 100644 index 0000000..dfb5690 --- /dev/null +++ b/config/utils/harpoon.nix @@ -0,0 +1,18 @@ +{ + plugins.harpoon = { + enable = true; + enableTelescope = true; + keymapsSilent = true; + keymaps = { + addFile = "ha"; + toggleQuickMenu = ""; + navFile = { + "1" = "hj"; + "2" = "hk"; + "3" = "hl"; + "4" = "hm"; + }; + }; + }; +} +