21 lines
746 B
Nix
21 lines
746 B
Nix
|
{
|
||
|
# Starship Prompt
|
||
|
# https://rycee.gitlab.io/home-manager/options.html#opt-programs.starship.enable
|
||
|
programs.starship.enable = true;
|
||
|
|
||
|
# Starship settings -------------------------------------------------------------------------- {{{
|
||
|
|
||
|
programs.starship.settings = {
|
||
|
# See docs here: https://starship.rs/config/
|
||
|
# Symbols config configured in Flake.
|
||
|
|
||
|
battery.display = [
|
||
|
{ threshold = 25; } # display battery information if charge is <= 25%
|
||
|
];
|
||
|
directory.fish_style_pwd_dir_length = 1; # turn on fish directory truncation
|
||
|
directory.truncation_length = 2; # number of directories not to truncate
|
||
|
memory_usage.disabled = true; # because it includes cached memory it's reported as full a lot
|
||
|
};
|
||
|
# }}}
|
||
|
}
|