add bash-it
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
# For unstaged(*) and staged(+) values next to branch name in __git_ps1
|
||||
GIT_PS1_SHOWDIRTYSTATE="enabled"
|
||||
|
||||
function rvm_version_prompt {
|
||||
local gemset=$(echo $GEM_HOME | awk -F'@' '{print $2}')
|
||||
|
||||
[ "$gemset" != "" ] && gemset="@$gemset"
|
||||
local version=$(echo $MY_RUBY_HOME | awk -F'-' '{print $2}')
|
||||
|
||||
[ "$version" == "1.9.2" ] && version=""
|
||||
|
||||
local full="$version$gemset"
|
||||
|
||||
[ "$full" != "" ] && echo "$full"
|
||||
}
|
||||
|
||||
function prompt_command() {
|
||||
# Check http://github.com/Sirupsen/dotfiles for screenshot
|
||||
PS1="$blue\W/$bold_blue$(rvm_version_prompt)$bold_green$(__git_ps1 " (%s)") ${normal}$ "
|
||||
}
|
||||
|
||||
safe_append_prompt_command prompt_command
|
||||
Reference in New Issue
Block a user