Skip to content

Instantly share code, notes, and snippets.

@delmarr
Forked from kevinold/.ackrc
Last active May 3, 2019 23:42
Show Gist options
  • Save delmarr/0ffaa4cd05144a1aa64366a0569c04d9 to your computer and use it in GitHub Desktop.
Save delmarr/0ffaa4cd05144a1aa64366a0569c04d9 to your computer and use it in GitHub Desktop.
#ack is a tool like grep, designed for programmers with large trees of heterogeneous source code
#to install ack, see http://betterthangrep.com/
#to use ack, launch terminal (mac osx) and type 'ack <some_keywords>'
#ack will search all files in the current directory & sub-directories
#here's how I have my config file setup. this file is located on mac osx here
# ~/.ackrc
# Always sort the files
#--sort−files
# Always color, even if piping to a another program
--color
# Use "less −r" as my pager
# --pager
# less -r
--ignore-dir=.idea/
--ignore-dir=.cache/
--ignore-dir=node_modules/
#make sure ack knows how to search common filetypes used in rails projects
--type-add=css:ext:scss
--type-add=ruby:ext:haml,rselm,feature,ru,lock
--type-set=sass:ext:scss,sass
--type-set=coffeescript:ext:coffee
--type-set=coffee:ext:coffee
#make sure ack knows how to search common filetypes used in node.js projects
--type-set=drupal:ext:info,inc,module,install,php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment