dashboard/dashboard-nvim: add setupOpts

This commit is contained in:
raf 2024-09-28 22:18:28 +03:00
commit ccea1a6159
Signed by: NotAShelf
GPG key ID: AF26552424E53993
2 changed files with 9 additions and 6 deletions

View file

@ -1,7 +1,9 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
inherit (lib.nvim.types) mkPluginSetupOption;
in {
options.vim.dashboard.dashboard-nvim = {
enable = mkEnableOption "Fancy and Blazing Fast start screen plugin of neovim [dashboard.nvim]";
setupOpts = mkPluginSetupOption "dashboard.nvim" {};
};
}