initial commit

This commit is contained in:
Andrew Miner
2017-07-10 13:43:46 -07:00
commit 2ec5ba837a
8 changed files with 2601 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
export EDITOR=vi
export PS1='[\h:\w]\$ '
export PATH=~/bin:~/node_modules/.bin:/opt/local/bin:/opt/local/sbin:/usr/local/mysql/bin:$PATH
export RAILS_ENV='development'
alias l='ls -Ghl'
alias la='ls -aGhl'
function count {
find . -name "*.$1" | grep -v "node_modules" | xargs cat | grep -v '^$' | grep -v '^#' | wc -l
}
ssh-add ~/.ssh/id_rsa_andrewminer &>/dev/null
eval "$(rbenv init -)"
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
defaults write com.macromates.TextMate.preview volumeSettings '{ "/" = { extendedAttributes = 0; }; }'