mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 06:55:58 +01: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
16 lines
235 B
Nix
16 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)";
|
|
};
|
|
};
|
|
}
|