X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/5813c6344b37a6f20424be0f1c30d9513a1dfded..7afd149163abf1d6a1ce7f3a24709d3f9f2dbf29:/zshrc?ds=sidebyside diff --git a/zshrc b/zshrc index ed8303e..e05c284 100644 --- a/zshrc +++ b/zshrc @@ -52,7 +52,7 @@ echo -e "\033[m" 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 @@ -61,6 +61,10 @@ alias nitro="server.js" 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.