mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 18:15:58 +01:00
7 lines
193 B
Nix
7 lines
193 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.vim.dashboard.alpha = {
|
|
enable = mkEnableOption "fast and fully programmable greeter for neovim [alpha.mvim]";
|
|
};
|
|
}
|