Files
.emacs.d/modules/navigation/siren-helm-ag.el

28 lines
715 B
EmacsLisp

;;; siren-helm-ag.el --- jimeh's Emacs Siren: helm-ag configuration.
;;; Commentary:
;; Basic configuration for helm-ag.
;;; Code:
(require 'siren-helm)
(use-package helm-ag
:bind
("C-c C-s" . helm-do-ag)
("C-x C-'" . helm-do-ag-project-root)
:config
(setq helm-ag-ignore-patterns '("*.sql"
"*.min.css"
"*.min-latest.css"
"*.min.js"
"*.min-latest.js"
"archive-contents"
"node_modules"
"vendor/assets")))
(provide 'siren-helm-ag)
;;; siren-helm-ag.el ends here