about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2023-05-23 16:05:14 +0100
committerDavid Morgan <djm_uk@protonmail.com>2023-05-23 16:05:14 +0100
commite30e25b1b1552fd38541f0223abb23035782a3e2 (patch)
treedf2a095d2660ed8f08df09cb9b04650e76f5f12d /.emacs.d
parent5b44516ce533d424f3249792eaf55f4c84ee78b1 (diff)
downloaddotfiles-e30e25b1b1552fd38541f0223abb23035782a3e2.tar.gz
Add dumb-jump
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-navigation.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el
index 2d81240..7d8439d 100644
--- a/.emacs.d/lisp/init-navigation.el
+++ b/.emacs.d/lisp/init-navigation.el
@@ -126,5 +126,10 @@ Or remove all highlighted symbols in the current buffer (with`ARG')."
   ("C-c C-l" . link-hint-open-link)
   ("C-c C-S-l" . link-hint-copy-link))
 
+(use-package dumb-jump
+  :defer 5
+  :custom (dumb-jump-force-searcher 'rg)
+  :config (add-hook 'xref-backend-functions #'dumb-jump-xref-activate))
+
 (provide 'init-navigation)
 ;;; init-navigation.el ends here