1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-07 14:49:49 +01:00
neovim-flake/modules/plugins/utility/motion/hop/hop.nix

13 lines
308 B
Nix
Raw Normal View History

{lib, ...}: let
2024-03-24 01:14:39 +01:00
inherit (lib.options) mkEnableOption;
inherit (lib.nvim.binds) mkMappingOption;
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)";
};
}