Created
August 3, 2024 12:42
-
-
Save broisnischal/ceebb7c9ecbdbc4a1a2095c314c3fbfb to your computer and use it in GitHub Desktop.
.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 | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
alias ll='ls -la' | |
alias gs='git status' | |
alias gc='git commit -m' | |
# Enable colors in terminal | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
# Load nvm | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment