diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-19 10:47:29 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-19 10:47:29 -0800 |
commit | a3132a70c6dd8970e8bfee12c31fe601da231abe (patch) | |
tree | b173b222eb0126b6aab1ae07ec45f64612b8b914 | |
parent | [Emacs] Add .projectile (diff) | |
download | emacs.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.
-rwxr-xr-x | bashrc | 2 |
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" |