summary refs log tree commit diff
path: root/bashrc
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-11-19 10:47:29 -0800
committerFranck Cuny <franck.cuny@gmail.com>2016-11-19 10:47:29 -0800
commita3132a70c6dd8970e8bfee12c31fe601da231abe (patch)
treeb173b222eb0126b6aab1ae07ec45f64612b8b914 /bashrc
parent[Emacs] Add .projectile (diff)
downloademacs.d-a3132a70c6dd8970e8bfee12c31fe601da231abe.tar.gz
[bash] Do not put the date in the prompt.
It would be more useful to add an alias to wrap commands with 'time'
when needed instead. I don't care about the date the command was
entered, I care about how long it takes to run it.
Diffstat (limited to 'bashrc')
-rwxr-xr-xbashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc b/bashrc
index 63a4013..67f34af 100755
--- a/bashrc
+++ b/bashrc
@@ -12,7 +12,7 @@ export GOPATH="${HOME}/gocode"
 [ "${BASH_VERSINFO}" -gt 3 ] && shopt -s autocd
 
 # prompts
-export PS1="[\t] \W % "
+export PS1="\W % "
 
 alias e="$EDITOR"
 alias et="emacsclient -nw"