diff options
author | Ben Sima <ben@bsima.me> | 2020-03-03 13:24:41 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-03-03 13:28:30 -0800 |
commit | 75bb94f5b73ec66e6cfa73f9c53ae1875919645f (patch) | |
tree | bfdceb790a0a7d3fb6c3b5bffa3fd0f1c1a052aa /lib | |
parent | 711493cff783f0866d2cbf10c8f3846a7557c7c3 (diff) |
Fix my prompt
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.nix b/lib/common.nix index ea1e420..e50ff10 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -136,7 +136,7 @@ in } # my prompt, after much chagrin - export PS1="\n\[\e[34m\][\u@\h:\w]\[\e[m\] $(date +%Y.%m.%d..%H.%M) \$(if [ \$? == 0 ]; then true; else echo \(\$?\); fi) \n$ " + export PS1="\n\[\e[34m\][\u@\h:\w]\[\e[m\] \$(date +%Y.%m.%d..%H.%M) \$(if [ \$? == 0 ]; then true; else echo \(\$?\); fi) \n$ " ''; shellAliases = { add = "git add --ignore-removal"; |