This commit is contained in:
dusk 2022-05-03 23:34:41 +03:00
parent 1f02e32314
commit 21be00c4cf
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA

View File

@ -2,15 +2,19 @@
programs.starship = { programs.starship = {
enable = true; enable = true;
settings = { settings = {
format = "$shell$nix_shell$shlvl@ $directory> "; format = "$shell$shlvl$nix_shell at $directory> ";
add_newline = false; add_newline = false;
character = { character = {
success_symbol = "[>](bold green)"; success_symbol = "[>](bold green)";
error_symbol = "[>](bold red)"; error_symbol = "[>](bold red)";
}; };
shell.disabled = false; shell.disabled = false;
shlvl.disabled = false; shlvl = {
nix_shell.format = "via [$name]($style) "; disabled = false;
symbol = "shlvl ";
format = "on [$symbol$shlvl]($style) ";
};
nix_shell.format = "via [$name]($style)";
directory = { directory = {
truncation_length = 2; truncation_length = 2;
truncate_to_repo = false; truncate_to_repo = false;