Skip to content

Instantly share code, notes, and snippets.

@sheniff
Last active December 9, 2016 21:43
Show Gist options
  • Save sheniff/c2baea8f2a5cdbb44b0586b86dd5c1cb to your computer and use it in GitHub Desktop.
Save sheniff/c2baea8f2a5cdbb44b0586b86dd5c1cb to your computer and use it in GitHub Desktop.
# Path to your oh-my-zsh installation.
export ZSH=/Users/sheniff/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true"
# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_ZSH_DAYS=13
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
# COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
# User configuration
source $ZSH/oh-my-zsh.sh
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# ssh
# export SSH_KEY_PATH="~/.ssh/dsa_id"
# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias g='git'
alias gs='git status -s'
alias grb='git rebase'
alias rbm='git rebase master'
alias gra='git rebase --abort'
alias gah='git reset --hard'
alias gr2='git rebase -i -p HEAD~2'
alias gr3='git rebase -i -p HEAD~3'
alias gr4='git rebase -i -p HEAD~4'
alias gr5='git rebase -i -p HEAD~5'
alias grc='git rebase --continue && rmorig'
alias grmorig="find . -iname '*.orig' -exec mv \{\} ~/.Trash \;"
alias gco='git checkout'
alias gcmaster='git checkout master'
alias gcb='git checkout -b'
alias gp='git push'
alias gpo='git push origin'
alias gamend='git commit --amend'
alias gcm='git commit -m'
alias gap='git add -p'
alias ga.='git add .'
alias gr='git remote'
alias grv='git remote -v'
alias gmt='git mergetool'
alias gst='git stash'
alias gsp='git stash pop'
alias gpreq='git pull-request'
alias blame='git blame'
alias gb='git branch -vv'
alias gbd='git branch -d'
alias glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr by %an)%Creset' --abbrev-commit --date=relative"
alias gpr="git pull --rebase"
alias greb="git checkout master && git pull --rebase && git checkout - && git rebase master"
export HOMEBREW_GITHUB_API_TOKEN=2d785e1b2d6ae823fac5caecdee88c0b604227a0
# Sublime Text 3 alias
alias subl3='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl'
alias sss='python -m SimpleHTTPServer'
# export JAVA_HOME
export JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk1.8.0_73.jdk/Contents/Home"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment