mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
8d5f23035d
* statix, deadnix, alejandra * _file * _module.args * concatStringsSep "\n" -> concatLines concatStringsSep "\n" map -> concatMapStringsSep "\n" * mkShell nativeBuildInputs -> packages
19 lines
328 B
Nix
19 lines
328 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({})
|
|
'';
|
|
};
|
|
}
|