1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-21 17:59:41 +01:00
nixvim/plugins/by-name/startify/default.nix
2025-11-19 15:22:27 +00:00

31 lines
1.2 KiB
Nix

{
lib,
...
}:
with lib;
with lib.nixvim.plugins;
mkVimPlugin {
name = "startify";
package = "vim-startify";
globalPrefix = "startify_";
description = "The fancy start screen for Vim.";
maintainers = [ maintainers.GaetanLepage ];
settingsOptions = import ./settings-options.nix { inherit lib; };
# TODO
settingsExample = {
custom_header = [
""
" "
" "
" "
" "
" "
" "
];
change_to_dir = false;
fortune_use_unicode = true;
};
}