nvf/modules/dashboard/dashboard-nvim/dashboard-nvim.nix

8 lines
212 B
Nix
Raw Normal View History

{lib, ...}: let
2024-03-24 00:14:39 +00:00
inherit (lib.options) mkEnableOption;
in {
2023-02-03 07:36:08 +00:00
options.vim.dashboard.dashboard-nvim = {
enable = mkEnableOption "Fancy and Blazing Fast start screen plugin of neovim [dashboard.nvim]";
2023-02-03 07:36:08 +00:00
};
}