Skip to content

Instantly share code, notes, and snippets.

@alekseylichtman
Last active June 21, 2021 21:48
Show Gist options
  • Save alekseylichtman/3ccf2e8e137688c4716519d5242bb96e to your computer and use it in GitHub Desktop.
Save alekseylichtman/3ccf2e8e137688c4716519d5242bb96e to your computer and use it in GitHub Desktop.
customTerminal.bash_prompt
#!/usr/bin/env bash
# GIT FUNCTIONS
git_branch() {
git branch 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
# TERMINAL PROMPT
PS1="\[\e[1;91m\]\u\[\e[m\]" # username
PS1+=" " # space
PS1+="\[\e[1;93m\]\W\[\e[m\]" # current directory
PS1+="\[\e[1;92m\]\$(git_branch)\[\e[m\]" # current branch
PS1+=" " # space
PS1+=">> " # end prompt
export PS1;
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
@alekseylichtman
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment