Last active
January 9, 2017 12:54
-
-
Save mimiflynn/9144157 to your computer and use it in GitHub Desktop.
sh <(curl https://gist.githubusercontent.com/mimiflynn/9144157/raw/25d87a81257008a77aa2f435af59a94204af3c82/install.sh -L)
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
# pip should only run in when virtualenv is currently activated | |
export PIP_REQUIRE_VIRTUALENV=true | |
# cache pip-installed packages to avoid re-downloading | |
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache | |
alias profile='vim ~/.bash_profile' | |
alias rehash='source ~/.bash_profile' | |
alias show='defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder' | |
alias hide='defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder' | |
alias ls='ls -G' | |
alias ll='ls -al' | |
alias nodewebkit='zip -r ../${PWD##*/}.nw *' | |
# Path ------------------------------------------------------------ | |
if [ -f ~/.bash_path ]; then | |
source ~/.bash_path | |
fi | |
# Load prompt | |
if [ -f ~/.bash_prompt ]; then | |
source ~/.bash_prompt | |
fi | |
# Load alias' | |
if [ -f ~/.bash_alias ]; then | |
source ~/.bash_alias | |
fi |
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
# Colors | |
TEMP="\[\033[1;30m\]" | |
BLACK="\[\033[0;30m\]" | |
RED="\[\033[0;31m\]" | |
GREEN="\[\033[0;32m\]" | |
ORANGE="\[\033[0;33m\]" | |
BLUE="\[\033[0;34m\]" | |
PURPLE="\[\033[0;35m\]" | |
CYAN="\[\033[0;36m\]" | |
LIGHT_GRAY="\[\033[0;37m\]" | |
LIGHT_BLACK="\[\033[1;30m\]" | |
LIGHT_RED="\[\033[1;31m\]" | |
LIGHT_GREEN="\[\033[1;32m\]" | |
YELLOW="\[\033[1;33m\]" | |
LIGHT_BLUE="\[\033[1;34m\]" | |
LIGHT_PINK="\[\033[1;35m\]" | |
LIGHT_CYAN="\[\033[1;36m\]" | |
WHITE="\[\033[1;37m\]" | |
NO_COLOUR="\[\033[0m\]" | |
BLUE_BG="\[\033[0;44m\]" | |
# Prompt | |
# export PS1="$LIGHT_BLUE[$CYAN\h$LIGHT_BLUE][$WHITE\w$LIGHT_BLUE]\n$LIGHT_BLUE[$WHITE\t$LIGHT_BLUE]$NO_COLOUR\$ " | |
export PS1="$LIGHT_BLUE[$CYAN\u@\h$LIGHT_BLUE] [$LIGHT_RED\w$LIGHT_BLUE]\n$LIGHT_BLUE[$WHITE\d \@$LIGHT_BLUE] $NO_COLOUR\$ " |
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
curl -o ~/.bash_prompt https://gist.githubusercontent.com/mimiflynn/9144157/raw/53ba4e96b9b1e344f676dccf7d07a3f6f74cc117/.bash_prompt | |
curl -o ~/.bash_profile https://gist.githubusercontent.com/mimiflynn/9144157/raw/b48cf53c35984114c94f1c9c6fa4887e82b46582/.bash_profile | |
source ~/.bash_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment