mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Add gxref: ggtags backend for xref
This commit is contained in:
@ -47,7 +47,16 @@
|
|||||||
(def-package! dumb-jump
|
(def-package! dumb-jump
|
||||||
:commands (dumb-jump-go dumb-jump-quick-look dumb-jump-back)
|
:commands (dumb-jump-go dumb-jump-quick-look dumb-jump-back)
|
||||||
:config
|
:config
|
||||||
(setq dumb-jump-default-project doom-emacs-dir))
|
|
||||||
|
|
||||||
|
(def-package! gxref
|
||||||
|
:commands (gxref-xref-backend
|
||||||
|
gxref-create-db
|
||||||
|
gxref-update-db
|
||||||
|
gxref-single-update-db
|
||||||
|
gxref-set-project-dir)
|
||||||
|
:init
|
||||||
|
(setq-default xref-backend-functions '(gxref-xref-backend t)))
|
||||||
|
|
||||||
|
|
||||||
;; (def-package! ggtags
|
;; (def-package! ggtags
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
;;; feature/jump/packages.el
|
;;; feature/jump/packages.el
|
||||||
|
|
||||||
(package! dumb-jump)
|
(package! dumb-jump)
|
||||||
|
(package! gxref)
|
||||||
;; (package! ggtags)
|
;; (package! ggtags)
|
||||||
;; (cond ((featurep! :completion ivy)
|
;; (cond ((featurep! :completion ivy)
|
||||||
;; (package! counsel-gtags))
|
;; (package! counsel-gtags))
|
||||||
|
Reference in New Issue
Block a user