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

21 lines
386 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" "archive-contents")))
(provide 'siren-helm-ag)
;;; siren-helm-ag.el ends here