root/admin prompt is red now (#5836)

I really miss bash's visual way of signalising root, i.e. blue: user, red: root

So I brought it to nushell (since you've added `is-admin` the code is fully portable and easily-readable) and hope you'll like it
This commit is contained in:
Kamil 2022-06-20 20:23:55 +00:00 committed by GitHub
parent fab3f8fd40
commit f94ca6cfde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,11 @@
# Nushell Environment Config File
def create_left_prompt [] {
let path_segment = ($env.PWD)
let path_segment = if (is-admin) {
$"(ansi red_bold)($env.PWD)"
} else {
$"(ansi green_bold)($env.PWD)"
}
$path_segment
}