2022-05-06 13:29:25 +00:00
|
|
|
|
{ config, lib, ... }: {
|
|
|
|
|
|
|
|
|
|
home-manager.users.${config.user}.programs.starship = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
add_newline = false; # Don't print new line at the start of the prompt
|
|
|
|
|
format = lib.concatStrings [
|
|
|
|
|
"$directory"
|
|
|
|
|
"$git_branch"
|
|
|
|
|
"$git_commit"
|
|
|
|
|
"$git_status"
|
|
|
|
|
"$cmd_duration"
|
|
|
|
|
"$character"
|
|
|
|
|
];
|
|
|
|
|
character = {
|
|
|
|
|
success_symbol = "[❯](bold green)";
|
|
|
|
|
error_symbol = "[❯](bold red)";
|
|
|
|
|
vicmd_symbol = "[❮](bold green)";
|
|
|
|
|
};
|
|
|
|
|
cmd_duration = {
|
|
|
|
|
min_time = 5000;
|
|
|
|
|
show_notifications = true;
|
|
|
|
|
min_time_to_notify = 30000;
|
|
|
|
|
format = "[$duration]($style) ";
|
|
|
|
|
};
|
|
|
|
|
directory = {
|
|
|
|
|
truncate_to_repo = true;
|
|
|
|
|
truncation_length = 100;
|
|
|
|
|
};
|
|
|
|
|
git_branch = { format = "[$symbol$branch]($style)"; };
|
|
|
|
|
git_commit = {
|
|
|
|
|
format = "( @ [$hash]($style) )";
|
|
|
|
|
only_detached = false;
|
|
|
|
|
};
|
|
|
|
|
git_status = {
|
|
|
|
|
format = "([$all_status$ahead_behind]($style) )";
|
|
|
|
|
conflicted = "=";
|
|
|
|
|
ahead = "⇡";
|
|
|
|
|
behind = "⇣";
|
|
|
|
|
diverged = "⇕";
|
|
|
|
|
untracked = "⋄";
|
|
|
|
|
stashed = "⩮";
|
|
|
|
|
modified = "∽";
|
|
|
|
|
staged = "+";
|
|
|
|
|
renamed = "»";
|
|
|
|
|
deleted = "✘";
|
|
|
|
|
style = "red";
|
|
|
|
|
};
|
2022-06-21 03:34:24 +00:00
|
|
|
|
nix_shell = { format = "[$symbol]($style)"; };
|
|
|
|
|
python = { format = "[\${version}\\(\${virtualenv}\\)]($style)"; };
|
2022-05-06 13:29:25 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|