use https://starship.rs/config/ with Dracula
This commit is contained in:
parent
226f60463d
commit
5d0b02f7b6
26
home.nix
26
home.nix
|
@ -55,9 +55,31 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# nice prompt
|
# nice prompt
|
||||||
programs.oh-my-posh = {
|
# https://starship.rs/config/
|
||||||
|
# https://draculatheme.com/starship
|
||||||
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
useTheme = "unicorn";
|
enableZshIntegration = true;
|
||||||
|
settings = {
|
||||||
|
aws.style = "bold #ffb86c";
|
||||||
|
cmd_duration.style = "bold #f1fa8c";
|
||||||
|
directory.style = "bold #50fa7b";
|
||||||
|
hostname.style = "bold #ff5555";
|
||||||
|
git_branch.style = "bold #ff79c6";
|
||||||
|
git_status.style = "bold #ff5555";
|
||||||
|
username = {
|
||||||
|
format = "[$user]($style) on ";
|
||||||
|
style_user = "bold #bd93f9";
|
||||||
|
};
|
||||||
|
character = {
|
||||||
|
success_symbol = "[❯](bold #f8f8f2)";
|
||||||
|
error_symbol = "[❯](bold #ff5555)";
|
||||||
|
};
|
||||||
|
directory = {
|
||||||
|
truncation_length = 8;
|
||||||
|
truncate_to_repo = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# nice cd
|
# nice cd
|
||||||
|
|
Loading…
Reference in a new issue