diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-30 15:57:32 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-30 15:57:32 -0800 |
commit | 755874a211ead6d6f6b3b0fccd90cd261ae46b77 (patch) | |
tree | 7d5277b68de49d45e14954abe15756495ac5f70c /bashrc | |
parent | [tmux] Enable colors (diff) | |
download | emacs.d-755874a211ead6d6f6b3b0fccd90cd261ae46b77.tar.gz |
[bash] Put current directory between square bracket.
Diffstat (limited to 'bashrc')
-rwxr-xr-x | bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc b/bashrc index 5e203d5..7ce71e9 100755 --- 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="[\W] " alias e="$EDITOR" alias et="emacsclient -nw" |