added example starship config

This commit is contained in:
willifan 2024-10-07 21:44:30 +02:00
parent bf19c62041
commit 997e696091

View file

@ -1,4 +1,23 @@
{ ... }:
{ lib, ... }:
{
home-manager.users.willifan.programs.starship = {
enable = true;
enableNushellIntegration = true;
settings = {
add_newline = false;
format = lib.concatStrings [
"$line_break"
"$package"
"$line_break"
"$character"
];
scan_timeout = 10;
character = {
success_symbol = "";
error_symbol = "";
};
};
};
}