From 9a94ddecb673e9f4047b998cd39f2fea5123cbb6 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sat, 27 Nov 2021 18:41:21 +0100 Subject: [PATCH] chore(ack): add configuration --- .dotbot.conf.yaml | 1 + ack | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 ack diff --git a/.dotbot.conf.yaml b/.dotbot.conf.yaml index 072c0dd..63f0d00 100644 --- a/.dotbot.conf.yaml +++ b/.dotbot.conf.yaml @@ -5,6 +5,7 @@ - clean: ['~'] - link: + ~/.ack: ack ~/.wget: wget ~/.zshrc: zshrc diff --git a/ack b/ack new file mode 100644 index 0000000..c44c615 --- /dev/null +++ b/ack @@ -0,0 +1,32 @@ +# group the results by file +--group + +# only search case-sensitiv with mixed case +--smart-case + +# follow symlinks +--follow + +# Colorful output +--color + +# Ignore directories +--ignore-dir=vendor +--ignore-dir=log +--ignore-dir=tmp +--ignore-dir=gems +--ignore-dir=node_modules +--ignore-dir=bower_components + +# Add file types +--type-set=css=.css,.less,.scss,.styl +--type-set=html=.html,.mustache,.handlebars,.tmpl +--type-set=json=.json +--type-set=less=.less +--type-set=md=.markdown,.md +--type-set=sass=.sass,.scss +--type-set=styl=.styl +--type-set=style=.scss,.sass,.styl,.less,.css +--type-set=svg=.svg +--type-set=ts=.ts +