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

8 lines
204 B
Nix
Raw Normal View History

{lib, ...}: let
inherit (lib) 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
};
}