mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
21 lines
386 B
EmacsLisp
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
|