I have recently begun to use the 'ag' command instead of 'ack'.
Ag is much faster, but does not seem to have a file (such as .ackrc) where one could add configuration options.
For example, I always want a pager to be used, and I don't want to have to always type in:
ag --pager "less -R"
--nopager
when invoking the command to override. This is useful for flags that don't play nicely with--pager 'less -R'
, such as--stats
– Tarantass