Add back dumb-jump

This commit is contained in:
Alexander Rosenberg 2024-01-08 21:32:05 -08:00
parent e45aa9cb41
commit 532ab5bbba
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -481,6 +481,7 @@ visual states."
"--header-insertion=never" "--pch-storage=memory"
"--malloc-trim" "--function-arg-placeholders"))))
;; realgud
(use-package realgud
:hook (realgud-short-key-mode . my/-realgud-setup-shortkey-mode)
:bind (:map realgud:shortkey-mode-map
@ -492,6 +493,11 @@ visual states."
(when realgud-short-key-mode
(keymap-local-set "C-d" realgud:shortkey-mode-map))))
;; dumb-jump
(use-package dumb-jump
:init
(add-hook 'xref-backend-functions #'dumb-jump-xref-activate))
;; yasnippet
(use-package yasnippet
:bind ("C-c s" . yas-expand)
@ -1086,6 +1092,8 @@ If no name is given, list all bookmarks instead."
:init
(setq ahs-face 'bold
ahs-face-unfocused 'bold
ahs-definition-face 'bold
ahs-definition-face-unfocused 'bold
ahs-plugin-default-face 'bold
ahs-plugin-default-face-unfocused 'bold))