|
@@ -1,5 +1,9 @@
|
|
|
use str
|
|
|
use re
|
|
|
+use platform
|
|
|
+
|
|
|
+var in-ssh = (has-env SSH_CONNECTION)
|
|
|
+var hostname = (platform:hostname)
|
|
|
|
|
|
fn nix-shell-prompt-string {
|
|
|
put '['
|
|
@@ -175,6 +179,12 @@ set edit:prompt = {
|
|
|
put "\n"
|
|
|
styled '['(date +%H:%M)']' bold bright-cyan
|
|
|
put ' '
|
|
|
+ if $in-ssh {
|
|
|
+ put '('
|
|
|
+ styled $hostname bright-blue
|
|
|
+ put ')'
|
|
|
+ put ' '
|
|
|
+ }
|
|
|
styled (tilde-abbr $pwd) yellow
|
|
|
put ' '
|
|
|
git-prompt-string
|