neovim-flake/modules/plugins/dashboard/dashboard-nvim/dashboard-nvim.nix

8 lines
212 B
Nix
Raw Normal View History

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