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

21 lines
342 B
Nix
Raw Normal View History

2023-02-03 08:36:08 +01:00
{
config,
lib,
...
}: let
inherit (lib.modules) mkIf;
inherit (lib.nvim.dag) entryAnywhere;
2023-02-03 08:36:08 +01:00
cfg = config.vim.dashboard.dashboard-nvim;
in {
config = mkIf cfg.enable {
vim.startPlugins = [
"dashboard-nvim"
];
vim.luaConfigRC.dashboard-nvim = entryAnywhere ''
require("dashboard").setup{}
2023-02-03 08:36:08 +01:00
'';
};
}