mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 21:45:59 +01:00
17 lines
219 B
Nix
17 lines
219 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib; let
|
||
|
cfg = config.vim;
|
||
|
in {
|
||
|
assertions = mkMerge [
|
||
|
{
|
||
|
assertion = cfg.kommentary.enable;
|
||
|
message = "Kommentary has been deprecated in favor";
|
||
|
}
|
||
|
];
|
||
|
}
|