about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2021-07-07 21:10:15 +0100
committerDavid Morgan <djm_uk@protonmail.com>2021-07-07 21:10:15 +0100
commitfb8d648983005f5e6f3677bcb7b59e3df8991d8b (patch)
treee108b9c59a0cdcc62f42ea1cef5de48826a511ed
parent115510d9a360ea103b87a712834e86fcdba51679 (diff)
downloaddotfiles-fb8d648983005f5e6f3677bcb7b59e3df8991d8b.tar.gz
Projectile can use ripgrep
-rw-r--r--emacs-prelude/personal/custom.el2
-rw-r--r--emacs-prelude/personal/lisp/init-projectile.el7
2 files changed, 5 insertions, 4 deletions
diff --git a/emacs-prelude/personal/custom.el b/emacs-prelude/personal/custom.el
index 0113cd9..20c2aaa 100644
--- a/emacs-prelude/personal/custom.el
+++ b/emacs-prelude/personal/custom.el
@@ -10,7 +10,7 @@
  '(es-always-pretty-print t)
  '(org-agenda-files nil)
  '(package-selected-packages
-   '(persp-projectile perspective consult-flycheck ctrlf consult-lsp embark-consult embark marginalia consult vertico corfu orderless es-mode multi-term jq-mode restclient multi-vterm solarized-theme flycheck-indicator simple-modeline miniedit smart-mode-line prelude subword-mode smartparens-mode projectile-mode prelude-mode rg f forge vterm dash magit-section markdown-mode popup s transient envrc hydra easy-kill-extras paredit-functions eval-expr lsp clj-refactor flycheck-clj-kondo yasnippet paredit dashboard emacs-dashboard yaml-mode web-mode lsp-ui lsp-mode json-mode js2-mode rainbow-mode elisp-slime-nav cider clojure-mode rainbow-delimiters exec-path-from-shell zop-to-char zenburn-theme which-key volatile-highlights undo-tree super-save smartrep smartparens operate-on-number nlinum move-text magit projectile imenu-anywhere hl-todo guru-mode gitignore-mode gitconfig-mode git-timemachine gist flycheck expand-region epl editorconfig easy-kill diminish diff-hl discover-my-major crux browse-kill-ring anzu ag ace-window))
+   '(ripgrep persp-projectile perspective consult-flycheck ctrlf consult-lsp embark-consult embark marginalia consult vertico corfu orderless es-mode multi-term jq-mode restclient multi-vterm solarized-theme flycheck-indicator simple-modeline miniedit smart-mode-line prelude subword-mode smartparens-mode projectile-mode prelude-mode rg f forge vterm dash magit-section markdown-mode popup s transient envrc hydra easy-kill-extras paredit-functions eval-expr lsp clj-refactor flycheck-clj-kondo yasnippet paredit dashboard emacs-dashboard yaml-mode web-mode lsp-ui lsp-mode json-mode js2-mode rainbow-mode elisp-slime-nav cider clojure-mode rainbow-delimiters exec-path-from-shell zop-to-char zenburn-theme which-key volatile-highlights undo-tree super-save smartrep smartparens operate-on-number nlinum move-text magit projectile imenu-anywhere hl-todo guru-mode gitignore-mode gitconfig-mode git-timemachine gist flycheck expand-region epl editorconfig easy-kill diminish diff-hl discover-my-major crux browse-kill-ring anzu ag ace-window))
  '(pdf-view-midnight-colors '("#DCDCCC" . "#383838")))
 (custom-set-faces
  ;; custom-set-faces was added by Custom.
diff --git a/emacs-prelude/personal/lisp/init-projectile.el b/emacs-prelude/personal/lisp/init-projectile.el
index caa12d3..c788203 100644
--- a/emacs-prelude/personal/lisp/init-projectile.el
+++ b/emacs-prelude/personal/lisp/init-projectile.el
@@ -1,9 +1,10 @@
-(use-package projectile
-  :diminish)
+(prelude-require-packages '(perspective persp-projectile ripgrep))
 
-(prelude-require-packages '(perspective persp-projectile))
 (use-package persp-projectile
   :init (persp-mode))
 
+(use-package projectile
+  :diminish)
+
 (provide 'init-projectile)