1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-11-22 09:47:21 +01:00

prompt fix

This commit is contained in:
Matthias Kretschmann 2015-11-21 21:33:09 +01:00
parent b27e15cbe0
commit 4d60242d2d
2 changed files with 1 additions and 3 deletions

View File

@ -56,8 +56,6 @@ complete -o "nospace" -W "Contacts Calendar Dock Finder Mail Safari iTunes Syste
# aws-cli tab completion # aws-cli tab completion
complete -C aws_completer aws complete -C aws_completer aws
# grunt-cli tab completion
eval "$(grunt --completion=bash)"
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# rvm # rvm

View File

@ -112,7 +112,7 @@ fi;
PS1="\[\033]0;\w\007\]"; PS1="\[\033]0;\w\007\]";
PS1+="\n"; PS1+="\n";
PS1+="\[${cyan}\]\w"; # working directory PS1+="\[${cyan}\]\w"; # working directory
PS1+="\$(prompt_git \" ${gray}\")"; # Git repository details PS1+="\$(prompt_git \" \[${gray}\]\")"; # Git repository details
PS1+="\n"; PS1+="\n";
PS1+="\[${dim}\]→ \[${reset}\]"; # `→` (and reset color) PS1+="\[${dim}\]→ \[${reset}\]"; # `→` (and reset color)
export PS1; export PS1;