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 | 7afd149163abf1d6a1ce7f3a24709d3f9f2dbf29 (patch) | |
| tree | bac8b321ef5663ea5dac098bb0433839a301d19b | |
| parent | 5813c6344b37a6f20424be0f1c30d9513a1dfded (diff) | |
Changes to ackrc, zshrc & agignore: better search
| -rw-r--r-- | ackrc | 2 | ||||
| -rw-r--r-- | agignore | 4 | ||||
| -rw-r--r-- | zshrc | 6 |
3 files changed, 11 insertions, 1 deletions
@@ -7,6 +7,8 @@ --ignore-dir=tmp --ignore-dir=doc --ignore-dir=public/system +--ignore-dir=asset_packages +--ignore-dir=node_modules --sort-files --color --follow diff --git a/agignore b/agignore new file mode 100644 index 0000000..ccee019 --- /dev/null +++ b/agignore @@ -0,0 +1,4 @@ +tmp +public/system +asset_packages +node_modules @@ -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. |