Last active
April 14, 2020 17:24
-
-
Save yankcrime/45ac30d2f853b4427b2b1172d0c220ff to your computer and use it in GitHub Desktop.
MVP 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
| # .bashrc | |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc | |
| fi | |
| # User specific aliases and functions | |
| set -o vi | |
| # Requires the git package to be installed | |
| source /usr/share/git-core/contrib/completion/git-prompt.sh | |
| PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment