mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
20 lines
305 B
Nix
20 lines
305 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.dashboard.dashboard-nvim;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim.startPlugins = [
|
|
"dashboard-nvim"
|
|
];
|
|
|
|
vim.luaConfigRC.dashboard-nvim = nvim.dag.entryAnywhere ''
|
|
require("dashboard").setup{}
|
|
'';
|
|
};
|
|
}
|