Add starship.
This commit is contained in:
parent
bd85f9d34b
commit
36555fa806
1 changed files with 22 additions and 0 deletions
|
@ -16,6 +16,28 @@
|
|||
userEmail = "joe@veri.dev";
|
||||
};
|
||||
|
||||
# starship - an customizable prompt for any shell
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
# custom settings
|
||||
settings = {
|
||||
add_newline = false;
|
||||
aws.disabled = true;
|
||||
gcloud.disabled = true;
|
||||
line_break.disabled = true;
|
||||
username = {
|
||||
disabled = false;
|
||||
show_always = true;
|
||||
format = "[$user]($style)@";
|
||||
};
|
||||
hostname ={
|
||||
disabled = false;
|
||||
ssh_only = false;
|
||||
format = "[$hostname]($style) ";
|
||||
ssh_symbol = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# exa replacement, ls replacement.
|
||||
programs.lsd.enable = true;
|
||||
|
|
Reference in a new issue