feat: add hop keybindings

This commit is contained in:
n3oney 2023-05-02 21:58:06 +02:00
commit d5eb3e87ed
No known key found for this signature in database
GPG key ID: C786693DE727850E
2 changed files with 12 additions and 12 deletions

View file

@ -1,13 +1,10 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.vim.utility.motion.hop;
in {
{lib, ...}:
with lib; {
options.vim.utility.motion.hop = {
mappings = {
hop = mkMappingOption "Jump to occurences [hop.nvim]" "<leader>h";
};
enable = mkEnableOption "Enable Hop.nvim plugin (easy motion)";
};
}