Skip to content

Instantly share code, notes, and snippets.

@vermilion1
Last active December 10, 2015 08:09
Show Gist options
  • Save vermilion1/4406137 to your computer and use it in GitHub Desktop.
Save vermilion1/4406137 to your computer and use it in GitHub Desktop.
dotfiles
[user]
name = Vitalii Petrychuk
email = vitaliy@petrychuk.com
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[color]
ui = true
[merge]
tool = opendiff
[alias]
co = checkout
ci = commit
st = status
br = branch
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
sse = log --pretty=format:\"%s%d\" --graph --date=short
type = cat-file -t
dump = cat-file -p
[core]
excludesfile = /Users/vpetrychuk/.gitignore_global
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.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="sunrise"
# Aliases
alias canary="/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary"
alias canary_unsafe="/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary --disable-web-security"
alias dms=". ~/.nvm/nvm.sh && nvm use 0.8.15 && cd ~/Sites/dms/dms-ui"
alias spa="cd ~/Sites/spa-template"
alias petrychuk="cd ~/Sites/petrychuk.com"
alias tree="find . -print | sed -e 's;[^/]*/;|--;g;s;--|; |;g'"
alias server="python -m SimpleHTTPServer"
alias ios="open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app"
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
# Comment this out to disable bi-weekly auto-update checks
# DISABLE_AUTO_UPDATE="true"
# Uncomment to change how often before auto-updates occur? (in days)
# export UPDATE_ZSH_DAYS=13
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want to disable command autocorrection
DISABLE_CORRECTION="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
# Uncomment 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"
# 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)
plugins=(git sublime)
source $ZSH/oh-my-zsh.sh
# Customize to your needs...
export PATH=$PATH:/opt/local/bin:/opt/local/sbin:/Volumes/Home/.rvm/gems/ruby-1.9.3-p362/bin:/Volumes/Home/.rvm/gems/ruby-1.9.3-p362@global/bin:/Volumes/Home/.rvm/rubies/ruby-1.9.3-p362/bin:/Volumes/Home/.rvm/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/local/git/bin
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment