summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-10-26 15:45:46 -0700
committerFranck Cuny <franck.cuny@gmail.com>2016-10-26 15:45:46 -0700
commit08e4537ead451c630372b3c615a8ad68c75016ae (patch)
tree0769bd74bfd1f8c3621d70e50b6b1cb42b686e39
parent[emacs] add a couple of functions to open temp files (diff)
downloademacs.d-08e4537ead451c630372b3c615a8ad68c75016ae.tar.gz
[bash] Add time (UTC) to my prompt.
Remove a few alias for work (the aliases are in my ssh config).
Diffstat (limited to '')
-rw-r--r--bashrc8
1 files changed, 1 insertions, 7 deletions
diff --git a/bashrc b/bashrc
index ad4ea96..6b5ccf1 100644
--- a/bashrc
+++ b/bashrc
@@ -12,7 +12,7 @@ export GOPATH="${HOME}/gocode"
 [ "${BASH_VERSINFO}" -gt 3 ] && shopt -s autocd
 
 # prompts
-export PS1="\W % "
+export PS1="[\$(date -u '+%T %D')]\W % "
 
 alias e="$EDITOR"
 alias et="emacsclient -nw"
@@ -29,12 +29,6 @@ alias au="aurora"
 alias g="git"
 alias k="kubectl"
 
-alias gobknest="ssh -K bookkeeper@nest.smfc.twitter.com"
-alias goebnest="ssh -K eventbus@nest.smfc.twitter.com"
-alias gonest="ssh -K nest.smfc.twitter.com"
-
-alias vi="ed"
-
 # finally, build the path
 [ -d "${HOME}/bin" ] && PATH="${HOME}/bin:${PATH}"
 [ -d "${GOPATH}/bin" ] && PATH="${GOPATH}/bin:${PATH}"