Last active
March 20, 2023 22:40
-
-
Save nkthiebaut/d1db06d7922503b37ba0dd8760bc80ed to your computer and use it in GitHub Desktop.
Basic bash terminal set up script
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
git config --global credential.helper store | |
git config --global user.email [email protected] | |
git config --global user.name bobby | |
export PS1="\[\033[38;5;133m\]\t\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[38;5;33m\]\w\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[38;5;2m\]\\$\[$(tput sgr0)\] \[$(tput sgr0)\]" | |
alias ls='ls --color=auto' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment