Skip to content

Commit

Permalink
random
Browse files Browse the repository at this point in the history
  • Loading branch information
Adarsh Pandit committed Feb 11, 2013
1 parent 5cc0e75 commit 5cfd01e
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 8 deletions.
3 changes: 3 additions & 0 deletions aliases
Expand Up @@ -97,3 +97,6 @@ alias db-pull-production='heroku db:pull --remote production --confirm `basename
# Yammer
alias yam='cd ~/dev/yammer/sched.do/'
alias yamux='teamocil --here yammer'

# Fanhattan
alias fan='cd ~/dev/fanhattan/'
13 changes: 9 additions & 4 deletions gitconfig
Expand Up @@ -5,15 +5,15 @@
pretty = %Cblue%h%Creset %Cgreen[%ar]%Creset (%an) %s

[user]
name = Adarsh Pandit
email = adarsh@thoughtbot.com
name = Adarsh Pandit
email = adarsh@thoughtbot.com

[color]
ui = true
ui = auto

[alias]
a = add
aa= !git add -u && git add . && git status
aa = add --all
c = commit -m
cob = checkout -b
down = !git checkout master && git merge @{-1} --ff-only
Expand All @@ -22,6 +22,11 @@

[credential]
helper = osxkeychain

[core]
ignorecase = true
excludesfile = /Users/adarsh/.gitignore_global
whitespace = trailing-space,space-before-tab

[apply]
whitespace = warn
3 changes: 3 additions & 0 deletions gitignore_global
@@ -1,3 +1,6 @@
# For zeus
zeus.json
custom_plan.rb

# for chruby
.ruby-version
1 change: 1 addition & 0 deletions vim/bundle/vim-colors-github
Submodule vim-colors-github added at e5bc56
9 changes: 5 additions & 4 deletions vimrc
Expand Up @@ -7,12 +7,13 @@ call vundle#rc()

" let Vundle manage Vundle (required!)
Bundle 'gmarik/vundle'
Bundle 'tpope/vim-rails.git'
Bundle 'tpope/vim-fugitive'
Bundle 'jgdavey/vim-turbux'
Bundle 'jgdavey/tslime.vim'
Bundle 'mileszs/ack.vim'
Bundle 'jgdavey/vim-turbux'
Bundle 'kien/ctrlp.vim'
Bundle 'mileszs/ack.vim'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-markdown'
Bundle 'tpope/vim-rails.git'
Bundle 'vim-ruby/vim-ruby'

" End Vundle Setup
Expand Down
10 changes: 10 additions & 0 deletions zshrc
Expand Up @@ -53,9 +53,19 @@ export EYRC=./.eyrc
setopt auto_pushd
export dirstacksize=5

# Source the chruby shell script
source /usr/local/opt/chruby/share/chruby/chruby.sh
# source /usr/local/opt/chruby/share/chruby/auto.sh

# recommended by brew doctor
export PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/opt/local/sbin:/usr/texbin'

# Enable zmv, alias to 'mmv' to allow matching like `mmv *.mp3 *.old.mp3`
autoload -U zmv
alias mmv='noglob zmv -W'

#RVM
# PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting

#Fanhattan
export RACK_ENV=development

0 comments on commit 5cfd01e

Please sign in to comment.