mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-10 09:05:57 +01:00
16 lines
219 B
Nix
16 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";
|
|
}
|
|
];
|
|
}
|