nixvim-config/plugins/startify.nix

19 lines
592 B
Nix
Raw Normal View History

{ config, ... }:
{
programs.nixvim = {
plugins.startify = {
enable = true;
settings = {
custom_header = if config.nixvim-config.enable-startify then null else [
''. _______ ____ ____.___ _____''
''. \ \ ____ ___\ \ / /| | / \''
''. / | \_/ __ \/ _ \ Y / | |/ \ / \''
''. / | \ ___( <_> ) / | / Y \''
''. \____|__ /\___ >____/ \___/ |___\____|__ /''
''. \/ \/ \/''
];
};
};
};
}