1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-05 23:39:48 +01:00
neovim-flake/modules/utility/motion/hop/hop.nix

11 lines
227 B
Nix
Raw Normal View History

2023-05-02 21:58:06 +02:00
{lib, ...}:
with lib; {
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)";
};
}