{ 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 = "ha"; toggleQuickMenu = ""; navFile = { "1" = "hj"; "2" = "hk"; "3" = "hl"; "4" = "hm"; }; }; }; }; }