forked from malob/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarship.nix
18 lines (16 loc) · 810 Bytes
/
starship.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
# Starship Prompt
# https://rycee.gitlab.io/home-manager/options.html#opt-programs.starship.enable
programs.starship.enable = true;
programs.starship.settings = {
# See docs here: https://starship.rs/config/
# Symbols config configured ./starship-symbols.nix.
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
gcloud.disabled = true; # annoying to always have on
hostname.style = "bold green"; # don't like the default
memory_usage.disabled = true; # because it includes cached memory it's reported as full a lot
username.style_user = "bold blue"; # don't like the default
};
}