Skip to content

Instantly share code, notes, and snippets.

@guidopontet
Last active March 17, 2020 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guidopontet/e598eb0a6894d863345adfabc62a3926 to your computer and use it in GitHub Desktop.
Save guidopontet/e598eb0a6894d863345adfabc62a3926 to your computer and use it in GitHub Desktop.
Configuraciones útiles de bash
# ==================================
# Custom by Guido
# ==================================
# Mostrar el branch actual de Git
force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\]$(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
unset color_prompt force_color_prompt
# Run 'nvm use' automatically every time there's a .nvmrc file in the directory. Also,
# revert to default version when entering a directory without .nvmrc
enter_directory() {
if [[ $PWD == $PREV_PWD ]]; then
return
fi
PREV_PWD=$PWD
if [[ -f ".nvmrc" ]]; then
nvm use
NVM_DIRTY=true
elif [[ $NVM_DIRTY = true ]]; then
nvm use default
NVM_DIRTY=false
fi
}
export PROMPT_COMMAND=enter_directory
# ==================================
# End custom
# ==================================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment