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

26 lines
415 B
Nix
Raw Normal View History

2023-02-03 08:36:08 +01:00
{
pkgs,
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.dashboard.dashboard-nvim;
in {
options.vim.dashboard.dashboard-nvim = {
enable = mkEnableOption "dashboard-nvim";
};
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
'';
};
}