mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 04:35:58 +01:00
13 lines
209 B
Nix
13 lines
209 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.vim.utility.motion.leap;
|
|
in {
|
|
options.vim.utility.motion.leap = {
|
|
enable = mkEnableOption "Enable leap.nvim plugin (easy motion)";
|
|
};
|
|
}
|