2023-04-02 16:58:13 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.vim;
|
|
|
|
in {
|
|
|
|
assertions = mkMerge [
|
|
|
|
{
|
|
|
|
assertion = cfg.kommentary.enable;
|
2023-04-04 23:13:12 +00:00
|
|
|
message = "Kommentary has been deprecated in favor of comments-nvim";
|
2023-04-02 16:58:13 +00:00
|
|
|
}
|
2023-04-02 17:15:24 +00:00
|
|
|
mkIf
|
|
|
|
(config.programs.neovim-flake.enable)
|
|
|
|
{
|
|
|
|
assertion = !config.programs.neovim.enable;
|
2023-04-11 10:43:58 +00:00
|
|
|
message = "You cannot use `programs.neovim-flake.enable` with `programs.neovim.enable`";
|
2023-04-02 17:15:24 +00:00
|
|
|
}
|
2023-04-02 16:58:13 +00:00
|
|
|
];
|
|
|
|
}
|