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
{
programs.starship = {
enable = true;
settings = {
add_newline = false;
format = concatStrings [
# First Line
## Left Prompt
"$hostname$directory"
"$fill"
## Right Prompt
"$all"
# Second Line
## Left Prompt
"$character"
];
git_branch.format = "[$symbol$branch(:$remote_branch)]($style) ";
shlvl.disabled = false;
username.disabled = true;
fill.symbol = " ";
};
enable = false;
# settings = {
# add_newline = false;
# format = concatStrings [
# # First Line
# ## Left Prompt
# "$hostname$directory"
# "$fill"
# ## Right Prompt
# "$all"
# # Second Line
# ## Left Prompt
# "$character"
# ];
# git_branch.format = "[$symbol$branch(:$remote_branch)]($style) ";
# shlvl.disabled = false;
# username.disabled = true;
# fill.symbol = " ";
# };
};
}