2023-02-03 08:36:08 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-07 01:50:27 +01:00
|
|
|
}: let
|
2024-02-26 06:05:23 +01:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
2024-09-28 21:18:28 +02:00
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2023-11-07 01:50:27 +01:00
|
|
|
|
2023-02-03 08:36:08 +01:00
|
|
|
cfg = config.vim.dashboard.dashboard-nvim;
|
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
2024-09-28 21:18:28 +02:00
|
|
|
vim = {
|
|
|
|
startPlugins = ["dashboard-nvim"];
|
2023-02-03 08:36:08 +01:00
|
|
|
|
2024-09-28 21:18:28 +02:00
|
|
|
pluginRC.dashboard-nvim = entryAnywhere ''
|
|
|
|
require("dashboard").setup(${toLuaObject cfg.setupOpts})
|
|
|
|
'';
|
|
|
|
};
|
2023-02-03 08:36:08 +01:00
|
|
|
};
|
|
|
|
}
|