mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
22 lines
464 B
Nix
22 lines
464 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.strings) optionalString;
|
|
|
|
cfg = config.vim.binds.cheatsheet;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim.lazy.plugins.cheatsheet-nvim = {
|
|
package = "cheatsheet-nvim";
|
|
setupModule = "cheatsheet";
|
|
setupOpts = {};
|
|
cmd = ["Cheatsheet" "CheatsheetEdit"];
|
|
|
|
before = optionalString config.vim.lazy.enable "require('lz.n').trigger_load('telescope')";
|
|
};
|
|
};
|
|
}
|