mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-26 15:06:45 +00:00
17 lines
584 B
Nix
17 lines
584 B
Nix
{lib, ...}: let
|
|
inherit (lib.modules) mkRemovedOptionModule;
|
|
in {
|
|
imports = [
|
|
# 2024-06-06
|
|
(mkRemovedOptionModule ["vim" "languages" "elixir"] ''
|
|
Elixir language support has been removed as of 2024-06-06 as it was long unmaintained. If
|
|
you dependend on this language support, please consider contributing to its maintenance.
|
|
'')
|
|
|
|
(mkRemovedOptionModule ["vim" "tidal"] ''
|
|
Tidalcycles language support has been removed as of 2024-06-06 as it was long unmaintained. If
|
|
you depended on this functionality, please open an issue.
|
|
'')
|
|
];
|
|
}
|