Skip to content

Instantly share code, notes, and snippets.

@SmetDenis
Last active May 30, 2018 13:31
Show Gist options
  • Save SmetDenis/f935a6e5e66bf6cb9e2c734e21d667ab to your computer and use it in GitHub Desktop.
Save SmetDenis/f935a6e5e66bf6cb9e2c734e21d667ab to your computer and use it in GitHub Desktop.
jbzoo bashrc
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
PS1='\[\e[0;32m\]\u\[\e[m\] \[\e[1;34m\]\w\[\033[36m\]`parse_git_branch`\[\033[00m\] \n\$ '
alias bup='source ~/.bashrc'
alias ls='ls -lAhvo --group-directories-first --color=auto --no-group --show-control-chars'
alias mc='mc -abc'
alias make="make --no-print-directory"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment