From 21be00c4cfbe8acfe113f36e1d28457c47f7a9f5 Mon Sep 17 00:00:00 2001 From: Yusuf Bera Ertan Date: Tue, 3 May 2022 23:34:41 +0300 Subject: [PATCH] hhh --- users/modules/starship/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/users/modules/starship/default.nix b/users/modules/starship/default.nix index 389d694..994aa82 100644 --- a/users/modules/starship/default.nix +++ b/users/modules/starship/default.nix @@ -2,15 +2,19 @@ programs.starship = { enable = true; settings = { - format = "$shell$nix_shell$shlvl@ $directory> "; + format = "$shell$shlvl$nix_shell at $directory> "; add_newline = false; character = { success_symbol = "[>](bold green)"; error_symbol = "[>](bold red)"; }; shell.disabled = false; - shlvl.disabled = false; - nix_shell.format = "via [$name]($style) "; + shlvl = { + disabled = false; + symbol = "shlvl "; + format = "on [$symbol$shlvl]($style) "; + }; + nix_shell.format = "via [$name]($style)"; directory = { truncation_length = 2; truncate_to_repo = false;