From 2d356322d1c3731a49f606db054aa596eacbb9d8 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Thu, 13 Dec 2012 20:16:40 -0600 Subject: [PATCH] .ackrc: Adding, define custom ack colors --- .ackrc | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .ackrc diff --git a/.ackrc b/.ackrc new file mode 100644 index 0000000..28d9149 --- /dev/null +++ b/.ackrc @@ -0,0 +1,25 @@ +# General Ack Settings +# #################################################################### + +# only search with case sensitivity if there is mixed case +--smart-case +# follow symlinks +--follow +# always sort the files +--sort-files +# always color, even if piping to a another program +--color +# no grouping +--noheading +--break + +# Ack Type Settings +# #################################################################### +--type-set=mumps=.m,.ro,.ROU,.GLO +--type-set=markdown=.md,.mkd,.markdown + +# Colors +# #################################################################### +--color-filename=cyan +--color-lineno=yellow bold +--color-match=white on_green bold -- 2.43.0