--ignore-dir=tmp
--ignore-dir=doc
--ignore-dir=public/system
+--ignore-dir=asset_packages
+--ignore-dir=node_modules
--sort-files
--color
--follow
alias dwarffortress="/Applications/Dwarf\ Fortress/df"
alias ls="ls -FG"
alias rspec="rspec --color"
-alias nitro="server.js"
+alias nitro="nitrogen.js"
#Screeninator and RVM scripts
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
bindkey -v
bindkey '^R' history-incremental-pattern-search-backward
+ggb() {
+ git grep -n $1 | while IFS=: read i j k; do git blame -L $j,$j $i | cat; done
+}
+
#
# End of the custom things from my bash profile.
# There's probably a more "zsh-ish" way of doing these, but I have no time.