add harpoon

This commit is contained in:
Aditya 2024-03-06 19:19:55 +05:30
parent 0e7921de4c
commit 8b7b83f095
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
2 changed files with 19 additions and 0 deletions

View file

@ -55,5 +55,6 @@
./utils/better-escape.nix
./utils/flash.nix
./utils/hardtime.nix
./utils/harpoon.nix
];
}

18
config/utils/harpoon.nix Normal file
View file

@ -0,0 +1,18 @@
{
plugins.harpoon = {
enable = true;
enableTelescope = true;
keymapsSilent = true;
keymaps = {
addFile = "<leader>ha";
toggleQuickMenu = "<C-e>";
navFile = {
"1" = "<leader>hj";
"2" = "<leader>hk";
"3" = "<leader>hl";
"4" = "<leader>hm";
};
};
};
}