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
# this gives the terminal a better look | |
export PS1="___________________ | \w @ \h (\u) \n| => " | |
export PS2="| => " | |
#------------------------------------------------------------------------- | |
# this code allows for nvm to work | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
#----------------------------------------------------------------------------------------------------------------- |