mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 11:06:17 +00:00
[emacs] Replace ack with Ag
This commit is contained in:
parent
3c0421ad9b
commit
28753cdc5e
1 changed files with 16 additions and 6 deletions
|
@ -61,6 +61,13 @@
|
|||
:bind (("C-h b" . helm-descbinds)
|
||||
("C-h w" . helm-descbinds)))
|
||||
#+END_SRC
|
||||
*** helm-ag
|
||||
Helm search plugin for [[Ag%20(The%20Silver%20Searcher)][Ag (The Silver Searcher)]]
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package helm-ag
|
||||
:ensure t)
|
||||
#+END_SRC
|
||||
** Ace Jump
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
@ -252,6 +259,15 @@ languages. Setting ~Confirm Evaluation~ to ~No~ disables the
|
|||
:ensure t
|
||||
:init (powerline-default-theme))
|
||||
#+END_SRC
|
||||
** Ag (The Silver Searcher)
|
||||
This is a code searching tool that replaces =ack=, and is an order of
|
||||
magnitude faster.
|
||||
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package ag
|
||||
:ensure t)
|
||||
#+END_SRC
|
||||
** Projectile
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
@ -262,12 +278,6 @@ languages. Setting ~Confirm Evaluation~ to ~No~ disables the
|
|||
:config (progn (require 'helm-projectile)
|
||||
(helm-projectile-on)))
|
||||
#+END_SRC
|
||||
** Ack-and-a-half
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package ack-and-a-half
|
||||
:ensure t)
|
||||
#+END_SRC
|
||||
** Web Mode
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
|
Loading…
Reference in a new issue