diff --git a/modules/home/apps/cli-apps/fish/default.nix b/modules/home/apps/cli-apps/fish/default.nix index 327e8d9..f60acda 100644 --- a/modules/home/apps/cli-apps/fish/default.nix +++ b/modules/home/apps/cli-apps/fish/default.nix @@ -44,9 +44,7 @@ in { enableTransience = true; settings = { character = { - success_symbol = "[➜](bold green)"; - error_symbol = "[✗](bold red) "; - vicmd_symbol = "[](bold blue) "; + error_symbol = "[ ](bold red)"; }; time = { disabled = false; @@ -71,6 +69,21 @@ in { read_only = "  "; format = "at [$path]($style)[$read_only]($read_only_style) "; }; + git_metrics = { + disabled = false; + added_style = "bold blue"; + format = "[+$added]($added_style)/[-$deleted]($deleted_style) "; + }; + git_status = { + ahead = "↑$count(green)"; + behind = "↓$count(red)"; + diverged = "↕↓ahead_count(green)↑behind_count(red)"; + deleted = "✘$count"; + modified = "!$count"; + staged = "✚$count"; + renamed = "➜$count"; + untracked = "?$count"; + }; }; };