From 51ac26a1ade12a3b5f1cfd4618fa3d0ac1b94038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sat, 9 Dec 2023 18:41:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20ux(starship):=20changed=20icons?= =?UTF-8?q?=20and=20added=20some=20others=20to=20git=20status?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/starship/starship.toml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.config/starship/starship.toml b/.config/starship/starship.toml index c4afce65..a9b0c002 100644 --- a/.config/starship/starship.toml +++ b/.config/starship/starship.toml @@ -5,12 +5,17 @@ add_newline = true [git_status] +ahead = '[ $count](bold green) ' +conflicted = '[󱡂 ](bold red) ' untracked = '[ $count](bold yellow) ' staged = '[ $count](bold green) ' -stashed = "[ ](cyan) " +stashed = '[ $count](cyan) ' deleted = '[ $count](bold red) ' modified = '[ $count](bold blue) ' -behind = '[ ](bold purple) ' +behind = '[ $count](bold purple) ' +renamed = '[󰬴 $count](bold blue) ' +up_to_date = '[ ](bold green) ' +diverged = '[ $ahead_count  $behind_count ](bold red) ' format = '([$all_status$ahead_behind]($style))' [custom.neovim]