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