This commit is contained in:
2025-02-06 17:45:39 +02:00
commit a3f3abb460
84 changed files with 5567 additions and 0 deletions

26
config/utils/harpoon.nix Normal file
View File

@ -0,0 +1,26 @@
{
lib,
config,
...
}: {
options = {
harpoon.enable = lib.mkEnableOption "Enable harpoon module";
};
config = lib.mkIf config.harpoon.enable {
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";
};
};
};
};
}