diff options
author | Adam Hovorka <[email protected]> | 2017-11-15 18:30:54 -0700 |
---|---|---|
committer | Adam Hovorka <[email protected]> | 2017-11-15 18:30:54 -0700 |
commit | a9459106cd1cf7a633e63b4675a53b64431ec6ba (patch) | |
tree | 855a4694412d8ea814faf38a8b5ce1833862e8a4 /base | |
parent | 6f887bd05fd21e7b01f6c639c4686ab04f63628e (diff) |
Add ackrc
Diffstat (limited to 'base')
-rw-r--r-- | base/ackrc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/base/ackrc b/base/ackrc new file mode 100644 index 0000000..6b0de17 --- /dev/null +++ b/base/ackrc @@ -0,0 +1,40 @@ +# only search with case sensitivity if there is mixed case +--smart-case + +# follow symlinks +--follow + +# color settings +--color-filename=white +--color-lineno=cyan +--color-match=magenta underline + +# search other filetypes +--type-add +ruby=haml,rabl,builder + +--type-add +css=.styl,.scss + +--type-add +js=json,tmpl,jst,coffee,ts + +--type-add +css=sass,scss + +--type-set=md=.markdown,.md + +# ignore some dirs +--ignore-dir=build +--ignore-dir=vendor/bundle +--ignore-dir=.idea +--ignore-dir=tmp +--ignore-dir=log +--ignore-dir=.tmp +--ignore-dir=coverage +--ignore-dir=dist + +# ignore some files +--ignore-file=is:tags +--ignore-file=is:.tags +--ignore-file=is:.example_statuses |