diff --git a/src/indicators/pwd.rs b/src/indicators/pwd.rs index 6a667bf..20a163a 100644 --- a/src/indicators/pwd.rs +++ b/src/indicators/pwd.rs @@ -90,11 +90,19 @@ pub fn pwd( REPO_COL.paint(repo_name) // In the root dir of the repo } else { // In a subdir inside the repo - format!( + /*format!( "{}{}{}", REPO_COL.paint(repo_name), // Repo name MAIN_COL.paint(" \u{F02A2} "), // Separator PATH_COL.italic().paint(path) // Sub-directory + )*/ + format!( + "\x1b[38;2;55;120;130m{}\ + \x1b[38;2;178;98;44m \u{F02A2} \ + \x1b[3;38;2;82;82;82m{}\ + \x1b[39;23m", + repo_name, + path ) .into() };