blob: 1b37bb073f776a89c8df30b3999e9fcf7b2fd92a (
plain)
1
2
3
4
5
6
7
8
9
|
(use-package dumb-jump
:ensure t
:custom
(dumb-jump-prefer-searcher 'rg)
(xref-show-definitions-function #'consult-xref)
(xref-show-xrefs-function #'consult-xref)
(xref-prompt-for-identifier nil)
:config
(add-hook 'xref-backend-functions #'dumb-jump-xref-activate))
|