mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
562230a625
modified: lib/types/plugins.nix modified: modules/utility/default.nix new file: modules/utility/hop/config.nix new file: modules/utility/hop/default.nix new file: modules/utility/hop/hop.nix
17 lines
235 B
Nix
17 lines
235 B
Nix
{
|
|
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)";
|
|
};
|
|
};
|
|
}
|