neovim-flake/modules/utility/motion/hop/hop.nix

12 lines
272 B
Nix
Raw Normal View History

{lib, ...}: let
inherit (lib) mkMappingOption mkEnableOption;
in {
options.vim.utility.motion.hop = {
2023-05-02 21:58:06 +02:00
mappings = {
hop = mkMappingOption "Jump to occurences [hop.nvim]" "<leader>h";
};
enable = mkEnableOption "Hop.nvim plugin (easy motion)";
};
}