{ config, lib, ... }: let inherit (lib.options) mkEnableOption; inherit (config.vim.lib) mkMappingOption; in { options.vim.utility.motion.hop = { mappings = { hop = mkMappingOption "Jump to occurrences [hop.nvim]" "h"; }; enable = mkEnableOption "Hop.nvim plugin (easy motion)"; }; }