{ options, config, lib, ... }: let inherit (lib.modules) mkIf; inherit (lib.nvim.binds) pushDownDefault mkKeymap; cfg = config.vim.navigation.harpoon; keys = cfg.mappings; inherit (options.vim.navigation.harpoon) mappings; in { config = mkIf cfg.enable { vim = { startPlugins = ["plenary-nvim"]; lazy.plugins.harpoon = { package = "harpoon"; setupModule = "harpoon"; inherit (cfg) setupOpts; cmd = ["Harpoon"]; keys = [ (mkKeymap "n" keys.markFile "lua require('harpoon'):list():add()" {desc = mappings.markFile.description;}) (mkKeymap "n" keys.listMarks "lua require('harpoon').ui:toggle_quick_menu(require('harpoon'):list())" {desc = mappings.listMarks.description;}) (mkKeymap "n" keys.file1 "lua require('harpoon'):list():select(1)" {desc = mappings.file1.description;}) (mkKeymap "n" keys.file2 "lua require('harpoon'):list():select(2)" {desc = mappings.file2.description;}) (mkKeymap "n" keys.file3 "lua require('harpoon'):list():select(3)" {desc = mappings.file3.description;}) (mkKeymap "n" keys.file4 "lua require('harpoon'):list():select(4)" {desc = mappings.file4.description;}) ]; }; binds.whichKey.register = pushDownDefault { "a" = "Harpoon Mark"; }; }; }; }