Last active
September 30, 2015 22:31
-
-
Save mscandal/36e845cb445333402b35 to your computer and use it in GitHub Desktop.
.bash_profile
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
| #!/bin/bash | |
| . resty | |
| . /usr/local/etc/bash_completion.d/git-completion.bash | |
| . /usr/local/etc/bash_completion.d/git-prompt.sh | |
| COMP_WORDBREAKS=${COMP_WORDBREAKS/=/} | |
| COMP_WORDBREAKS=${COMP_WORDBREAKS/@/} | |
| export COMP_WORDBREAKS | |
| if type complete &>/dev/null; then | |
| _npm_completion () { | |
| local si="$IFS" | |
| IFS=$'\n' COMPREPLY=($(COMP_CWORD="$COMP_CWORD" \ | |
| COMP_LINE="$COMP_LINE" \ | |
| COMP_POINT="$COMP_POINT" \ | |
| npm completion -- "${COMP_WORDS[@]}" \ | |
| 2>/dev/null)) || return $? | |
| IFS="$si" | |
| } | |
| complete -o default -F _npm_completion npm | |
| elif type compdef &>/dev/null; then | |
| _npm_completion() { | |
| local si=$IFS | |
| compadd -- $(COMP_CWORD=$((CURRENT-1)) \ | |
| COMP_LINE=$BUFFER \ | |
| COMP_POINT=0 \ | |
| npm completion -- "${words[@]}" \ | |
| 2>/dev/null) | |
| IFS=$si | |
| } | |
| compdef _npm_completion npm | |
| elif type compctl &>/dev/null; then | |
| _npm_completion () { | |
| local cword line point words si | |
| read -Ac words | |
| read -cn cword | |
| let cword-=1 | |
| read -l line | |
| read -ln point | |
| si="$IFS" | |
| IFS=$'\n' reply=($(COMP_CWORD="$cword" \ | |
| COMP_LINE="$line" \ | |
| COMP_POINT="$point" \ | |
| npm completion -- "${words[@]}" \ | |
| 2>/dev/null)) || return $? | |
| IFS="$si" | |
| } | |
| compctl -K _npm_completion npm | |
| fi | |
| ###-end-npm-completion-### | |
| Blue='\[\e[01;34m\]' | |
| White='\[\e[01;37m\]' | |
| Red='\[\e[01;31m\]' | |
| Green='\[\e[01;32m\]' | |
| Reset='\[\e[00m\]' | |
| FancyX='\342\234\227' | |
| Checkmark='\342\234\223' | |
| export PS1="" | |
| if [[ $EUID == 0 ]]; then | |
| PS1+="$Red\\h " | |
| else | |
| PS1+="$Green\\u@\\h " | |
| fi | |
| PS1+="$Blue\\w$Reset\$(git-radar --bash --fetch --no-remote-status)" | |
| PS1+="$Blue\\\$$Reset " | |
| #"\u \W\$(__git_ps1)$ " | |
| export GOPATH=$HOME/go | |
| export PATH=/usr/local/bin:$PATH:$GOPATH/bin | |
| #alias ls='lsp -p' | |
| source ~/.nvm/nvm.sh | |
| nvm use 0.12.4 | |
| force_color_prompt=yes | |
| export CLICOLOR=1 | |
| export LSCOLORS=GxFxCxDxBxegedabagaced | |
| fortune | lolcat | |
| alias gsf='git status | fpp' | |
| alias gcm='git commit -m' | |
| alias gw='gulp watch' | |
| alias ni='npm install $@ --save' | |
| alias nr='npm remove $@ --save' | |
| alias ga='babel-node ~/ga.js' | |
| cd() { builtin cd "$@"; ls; } # Always list directory contents upon 'cd' | |
| alias cd..='cd ../' # Go back 1 directory level (for fast typers) | |
| alias ..='cd ../' # Go back 1 directory level | |
| alias ...='cd ../../' # Go back 2 directory levels | |
| alias .3='cd ../../../' # Go back 3 directory levels | |
| alias .4='cd ../../../../' # Go back 4 directory levels | |
| alias .5='cd ../../../../../' # Go back 5 directory levels | |
| alias .6='cd ../../../../../../' # Go back 6 directory levels | |
| alias f='open -a Finder ./' # f: Opens current directory in MacOS Finder | |
| alias ~="cd ~" # ~: Go Home | |
| alias c='clear' # c: Clear terminal display | |
| extract () { | |
| if [ -f $1 ] ; then | |
| case $1 in | |
| *.tar.bz2) tar xjf $1 ;; | |
| *.tar.gz) tar xzf $1 ;; | |
| *.bz2) bunzip2 $1 ;; | |
| *.rar) unrar e $1 ;; | |
| *.gz) gunzip $1 ;; | |
| *.tar) tar xf $1 ;; | |
| *.tbz2) tar xjf $1 ;; | |
| *.tgz) tar xzf $1 ;; | |
| *.zip) unzip $1 ;; | |
| *.Z) uncompress $1 ;; | |
| *.7z) 7z x $1 ;; | |
| *) echo "'$1' cannot be extracted via extract()" ;; | |
| esac | |
| else | |
| echo "'$1' is not a valid file" | |
| fi | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment