Skip to content

Commit

Permalink
Make money
Browse files Browse the repository at this point in the history
  • Loading branch information
airhorns committed Feb 10, 2012
1 parent e66f76d commit 3e7cb24
Show file tree
Hide file tree
Showing 26 changed files with 836 additions and 131 deletions.
15 changes: 15 additions & 0 deletions .gitmodules
Expand Up @@ -70,3 +70,18 @@
[submodule "vim/bundle/threesome"]
path = vim/bundle/threesome
url = https://github.com/sjl/threesome.vim.git
[submodule "vim/bundle/vim-colors-solarized"]
path = vim/bundle/vim-colors-solarized
url = git://github.com/altercation/vim-colors-solarized.git
[submodule "vim/bundle/vim-less"]
path = vim/bundle/vim-less
url = https://github.com/groenewege/vim-less.git
[submodule "vim/bundle/command-t"]
path = vim/bundle/command-t
url = git://git.wincent.com/command-t.git
[submodule "vim/bundle/ctrlp"]
path = vim/bundle/ctrlp
url = https://github.com/kien/ctrlp.vim.git
[submodule "vim/bundle/mango"]
path = vim/bundle/mango
url = https://github.com/goatslacker/mango.vim
1 change: 1 addition & 0 deletions ackrc
@@ -0,0 +1 @@
--type-add=javascript=.coffee
4 changes: 4 additions & 0 deletions bash/bash_aliases
Expand Up @@ -24,3 +24,7 @@ export LESSOPEN='|/usr/bin/lesspipe.sh %s 2>&-'
# Use this if lesspipe.sh exists
export LESS='-i -w -z-4 -g -e -M -X -F -R -P%t?f%f \
:stdin .?pb%pb\%:?lbLine %lb:?bbByte %bb:-...'

# Bundler
alias bx='bundle exec'
alias bi='bundle install'
5 changes: 3 additions & 2 deletions bash/bashrc
Expand Up @@ -111,7 +111,8 @@ export BUNDLE_EDITOR="vim"
export NODE_PATH="/usr/local/lib/node":$NODE_PATH

# Host specific configs
host_spec="$HOME/dotfiles/bash/$(hostname)_spec"
host_spec="$HOME/dotfiles/bash/$(hostname)_spec.sh"
host_spec=${host_spec//\.local/}
if [ -f "$host_spec" ]; then
. "$host_spec"
source "$host_spec"
fi
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions bash/winslow.local_spec

This file was deleted.

13 changes: 13 additions & 0 deletions bash/winslow_spec.sh
@@ -0,0 +1,13 @@
export PATH="$HOME/.rbenv/bin:`brew --prefix go`/bin:$PATH"
eval "$(rbenv init -)"
source ~/Code/nvm/nvm.sh
if [ -f `brew --prefix`/etc/autojump ]; then
. `brew --prefix`/etc/autojump
fi

# Trade Rails perf for memory
export RUBY_HEAP_MIN_SLOTS=1000000
export RUBY_HEAP_SLOTS_INCREMENT=1000000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=1000000000
export RUBY_HEAP_FREE_MIN=500000
4 changes: 3 additions & 1 deletion bootstrap.sh
@@ -1,4 +1,4 @@
rm ../.bash_profile ../.bashrc ../.gitignore ../.gitconfig ../.gvimrc ../.vimrc ../.vim ../.toprc ../.screenrc
rm ../.bash_profile ../.bashrc ../.gitignore ../.gitconfig ../.gvimrc ../.vimrc ../.vim ../.toprc ../.screenrc ../.rdebugrc ../.ackrc

ln -s ~/dotfiles/bash/bash_profile ../.bash_profile
ln -s ~/dotfiles/bash/bashrc ../.bashrc
Expand All @@ -9,5 +9,7 @@ ln -s ~/dotfiles/vim/vimrc ../.vimrc
ln -s ~/dotfiles/vim/ ../.vim
ln -s ~/dotfiles/screenrc ../.screenrc
ln -s ~/dotfiles/toprc ../.toprc
ln -s ~/dotfiles/.ackrc ../.ackrc
ln -s ~/dotfiles/rdebugrc ../.rdebugrc

git config --global core.excludesfile ~/.gitignore
5 changes: 5 additions & 0 deletions git/gitconfig
Expand Up @@ -70,3 +70,8 @@ tool = threesome
[mergetool "threesome"]
cmd = "mvim -f $BASE $LOCAL $REMOTE $MERGED -c 'ThreesomeInit'"
trustExitCode = true
[difftool "diffmerge"]
cmd = diffmerge \"$LOCAL\" \"$REMOTE\"
[mergetool "diffmerge"]
cmd = "diffmerge --merge --result=\"$MERGED\" \"$LOCAL\" \"$(if test -f \"$BASE\"; then echo \"$BASE\"; else echo \"$LOCAL\"; fi)\" \"$REMOTE\""
trustExitCode = true
1 change: 1 addition & 0 deletions git/gitignore
Expand Up @@ -3,3 +3,4 @@
*.swo
*.pyc
tags
script/vendor_batman

0 comments on commit 3e7cb24

Please sign in to comment.