Last active
August 2, 2017 12:12
-
-
Save shivamMg/17659b736776c92f2a2186c5c717cda0 to your computer and use it in GitHub Desktop.
Minimalistic 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
GREEN="\[$(tput setaf 2)\]" | |
RESET="\[$(tput sgr0)\]" | |
export PS1="${GREEN}$PS1${RESET}" | |
alias v="vim" | |
alias ls="ls --color=auto" | |
alias ll="ls -lah" | |
alias grep="grep --color=auto" | |
ainit() { source "$1"venv/bin/activate; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment