blob: 6b0de1732feee42747604c64d872d78d9f881e01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
|