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

21 lines
312 B
Nix
Raw Normal View History

2023-02-03 08:36:08 +01:00
{
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{
}
2023-02-03 08:36:08 +01:00
'';
};
}