feat(starship): disable starship prompt in home config

This commit is contained in:
Mohammad Rafiq 2025-06-30 06:10:27 +08:00
parent 81b7f07841
commit 8f3420493d
No known key found for this signature in database

View file

@ -4,24 +4,24 @@ let
in in
{ {
programs.starship = { programs.starship = {
enable = true; enable = false;
settings = { # settings = {
add_newline = false; # add_newline = false;
format = concatStrings [ # format = concatStrings [
# First Line # # First Line
## Left Prompt # ## Left Prompt
"$hostname$directory" # "$hostname$directory"
"$fill" # "$fill"
## Right Prompt # ## Right Prompt
"$all" # "$all"
# Second Line # # Second Line
## Left Prompt # ## Left Prompt
"$character" # "$character"
]; # ];
git_branch.format = "[$symbol$branch(:$remote_branch)]($style) "; # git_branch.format = "[$symbol$branch(:$remote_branch)]($style) ";
shlvl.disabled = false; # shlvl.disabled = false;
username.disabled = true; # username.disabled = true;
fill.symbol = " "; # fill.symbol = " ";
}; # };
}; };
} }