Last active
May 30, 2018 13:31
-
-
Save SmetDenis/f935a6e5e66bf6cb9e2c734e21d667ab to your computer and use it in GitHub Desktop.
jbzoo bashrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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