mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
19 lines
330 B
Nix
19 lines
330 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
|
|
cfg = config.vim.binds.cheatsheet;
|
|
in {
|
|
config = mkIf (cfg.enable) {
|
|
vim.startPlugins = ["cheatsheet-nvim"];
|
|
|
|
vim.luaConfigRC.cheaetsheet-nvim = entryAnywhere ''
|
|
require('cheatsheet').setup({})
|
|
'';
|
|
};
|
|
}
|