mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
25 lines
399 B
Nix
25 lines
399 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.dashboard.alpha;
|
||
|
in {
|
||
|
options.vim.dashboard.alpha = {
|
||
|
enable = mkEnableOption "alpha";
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
vim.startPlugins = [
|
||
|
"alpha-nvim"
|
||
|
];
|
||
|
|
||
|
vim.luaConfigRC.alpha = nvim.dag.entryAnywhere ''
|
||
|
require'alpha'.setup(require'alpha.themes.startify'.config)
|
||
|
'';
|
||
|
};
|
||
|
}
|