Last active
February 5, 2020 07:58
-
-
Save erikvw/83f78bfeed94d90625966d71c4584edf to your computer and use it in GitHub Desktop.
Bash profile to show git branch
This file contains 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
export PS1="\u@\h:\w$ " | |
function parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\*\1/' | |
} | |
if [ "$color_prompt" = yes ]; then | |
PS1='\[\033[01;36m\]\u@\[\033[00m\]:\[\033[01;33m\]\w\[\033[0;35m\]-($(parse_git_branch))\[\033[00m\]\$ ' | |
else | |
PS1='\u@\h:\w$(parse_git_branch)\$ ' | |
fi | |
# highlight | |
# args: 1: size, 2: lang | |
function keycode() { | |
pbpaste | \ | |
highlight \ | |
--font Inconsolata \ | |
--font-size $1 \ | |
--style fine_blue \ | |
--src-lang $2 \ | |
--out-format rtf | \ | |
pbcopy | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment