mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 08:05:58 +01:00
15 lines
181 B
Nix
15 lines
181 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib.modules) mkIf;
|
||
|
cfg = config.vim.lazy;
|
||
|
in {
|
||
|
config.vim = mkIf cfg.enable {
|
||
|
startPlugins = ["lz-n"];
|
||
|
|
||
|
# optPlugins =
|
||
|
};
|
||
|
}
|