Skip to content

Commit

Permalink
add new
Browse files Browse the repository at this point in the history
  • Loading branch information
plukevdh committed Mar 18, 2013
1 parent c2fff47 commit c5fa531
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 18 deletions.
7 changes: 6 additions & 1 deletion home/.gitconfig
Expand Up @@ -17,8 +17,10 @@
[diff] [diff]
tool = Kaleidoscope tool = Kaleidoscope
[core] [core]
excludesfile = /Users/hungerandthirst/.gitignore_global excludesfile = ~/.gitignore_global
editor = subl -w editor = subl -w
autocrlf = false
ignorecase = true
[color] [color]
ui = true ui = true
[alias] [alias]
Expand All @@ -28,7 +30,10 @@
enabled = 1 enabled = 1
[mergetool "Kaleidoscope"] [mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
trustExitCode = true
[mergetool] [mergetool]
prompt = false prompt = false
[merge] [merge]
tool = Kaleidoscope tool = Kaleidoscope
[credential]
helper = osxkeychain
1 change: 1 addition & 0 deletions home/.gitignore_global
Expand Up @@ -4,6 +4,7 @@
build/ build/
.powrc .powrc
.gems .gems
.bundle


.cookbooks .cookbooks
.chef .chef
Expand Down
24 changes: 7 additions & 17 deletions home/.zshrc
Expand Up @@ -12,30 +12,24 @@ bindkey -e


COMPLETION_WAITING_DOTS=true COMPLETION_WAITING_DOTS=true
JRUBY_INVOCATION="$(readlink "$(which celerity_jruby)")" JRUBY_INVOCATION="$(readlink "$(which celerity_jruby)")"
<<<<<<< Updated upstream JRUBY_OPTS="--1.9"
export JRUBY_OPTS="--1.9"
PATH="$HOME/.rbenv/bin:/usr/local/bin:/usr/local/sbin/:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/share/npm/bin:$PATH"
=======
export JRUBY_OPTS=--1.9
PATH="$HOME/.rbenv/bin:$HOME/bin:/usr/local/bin:/usr/local/sbin/:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/share/npm/bin:$PATH" PATH="$HOME/.rbenv/bin:$HOME/bin:/usr/local/bin:/usr/local/sbin/:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/share/npm/bin:$PATH"
>>>>>>> Stashed changes
TZ="America/New_York" TZ="America/New_York"
HISTFILE=$HOME/.zhistory HISTFILE=$HOME/.zhistory
HISTSIZE=1000 HISTSIZE=1000
SAVEHIST=1000 SAVEHIST=1000
HOSTNAME="`hostname`" HOSTNAME="`hostname`"
PAGER='less' PAGER='less'


<<<<<<< Updated upstream
alias edit=subl
=======
alias edit="subl" alias edit="subl"
>>>>>>> Stashed changes
export EDITOR="subl -w" export EDITOR="subl -w"


# alias edit=vim # alias edit=vim
# export EDITOR=edit # export EDITOR=edit


# git go: https://github.com/pengwynn/dotfiles/blob/master/bin/git-go
GH_LOGIN=plukevdh

#LANGUAGE= #LANGUAGE=
LC_ALL='en_US.UTF-8' LC_ALL='en_US.UTF-8'
LANG='en_US.UTF-8' LANG='en_US.UTF-8'
Expand All @@ -59,14 +53,10 @@ FLEX_HOME='~/Code/Flex/flex_sdk_3.4.1'
# zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31' # zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
# zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd' # zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'


<<<<<<< Updated upstream
fpath=(/usr/local/share/zsh-completions $fpath) fpath=(/usr/local/share/zsh-completions $fpath)
[[ -s "$HOME/.nvm/nvm.sh" ]] && . "$HOME/.nvm/nvm.sh" [[ -s "$HOME/.nvm/nvm.sh" ]] && . "$HOME/.nvm/nvm.sh"

eval "$(rbenv init -)"
=======
[[ -s "$HOME/.nvm/nvm.sh" ]] && . "$HOME/.nvm/nvm.sh" # This loads RVM into a shell session.

eval "$(rbenv init -)" eval "$(rbenv init -)"
eval "$(hub alias -s)" eval "$(hub alias -s)"
>>>>>>> Stashed changes
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"

0 comments on commit c5fa531

Please sign in to comment.