feat(starship): disable starship prompt in home config
This commit is contained in:
parent
81b7f07841
commit
8f3420493d
1 changed files with 19 additions and 19 deletions
|
@ -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 = " ";
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue