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/utility/motion/hop/hop.nix

10 lines
227 B
Nix

{lib, ...}:
with lib; {
options.vim.utility.motion.hop = {
mappings = {
hop = mkMappingOption "Jump to occurences [hop.nvim]" "<leader>h";
};
enable = mkEnableOption "Hop.nvim plugin (easy motion)";
};
}