Added starship (but it's a fail) and some programs

This commit is contained in:
zuma 2025-02-06 17:37:52 +01:00
parent a5c9298cda
commit bef5b0a873
4 changed files with 72 additions and 10 deletions

View file

@ -0,0 +1,34 @@
{ ... }: {
programs.starship = {
enable = true;
settings = {
format = "$username@$hostname:$directory($cmd_duration)$character";
directory = {
style = "blue";
};
character = {
success_symbol = "[](purple)";
error_symbol = "[](red)";
vimcmd_symbol = "[](green)";
};
cmd_duration = {
format = "[$duration]($style) ";
style = "yellow";
};
username = {
format = "[$user](bold white)";
};
hostname = {
ssh_only = false;
format = "[$hostname](bold red)";
disabled = false;
};
};
};
}