feat: add leap.nvim

This commit is contained in:
NotAShelf 2023-04-05 02:14:13 +03:00
commit d6cb8d9aba
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
9 changed files with 108 additions and 2 deletions

View file

@ -0,0 +1,13 @@
{
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)";
};
}