diff options
| author | Ben Beltran <ben@freshout.us> | 2013-08-22 09:35:23 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2013-08-22 09:35:23 -0500 |
| commit | 93da0d62fe481a91bd289cefca008c81d74f3b6c (patch) | |
| tree | 2bfa2289892762a348921a3eac862ecab246a2fe /zshrc | |
| parent | e970b41c2a8ffe89dc5581c2372badd766435552 (diff) | |
Changes to ackrc, zshrc & agignore: better search
Diffstat (limited to 'zshrc')
| -rw-r--r-- | zshrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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. |