26 lines
531 B
Nix
26 lines
531 B
Nix
{config, ...}: {
|
||
home.sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
|
||
|
||
programs.starship = {
|
||
enable = true;
|
||
enableZshIntegration = true;
|
||
settings = {
|
||
character = {
|
||
success_symbol = "[›](bold green)";
|
||
error_symbol = "[›](bold red)";
|
||
};
|
||
|
||
git_status = {
|
||
deleted = "✗";
|
||
modified = "✶";
|
||
staged = "✓";
|
||
stashed = "≡";
|
||
};
|
||
|
||
nix_shell = {
|
||
symbol = " ";
|
||
heuristic = true;
|
||
};
|
||
};
|
||
};
|
||
}
|