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

17 lines
235 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.vim.utility.hop;
in {
options.vim.utility.hop = {
enable = mkOption {
type = types.bool;
description = "Enable Hop plugin (easy motion)";
};
};
}