diff options
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-navigation.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el index 2c46c6c..0ad8d0d 100644 --- a/.emacs.d/lisp/init-navigation.el +++ b/.emacs.d/lisp/init-navigation.el @@ -119,5 +119,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 |