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