diff options
author | jao <jao@gnu.org> | 2023-03-24 02:20:02 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2023-03-24 02:20:02 +0000 |
commit | 0a9cef00af8f26dd69deeda5dcabba4e25733ab3 (patch) | |
tree | 46ee66a7519124f4c22c80e8f87894dcbb0621d6 | |
parent | 07b97b07a0f85b7065ccf897f79c33881db3a878 (diff) | |
download | elibs-0a9cef00af8f26dd69deeda5dcabba4e25733ab3.tar.gz elibs-0a9cef00af8f26dd69deeda5dcabba4e25733ab3.tar.bz2 |
some unused packages disabled
-rw-r--r-- | custom/jao-custom-completion.el | 8 | ||||
-rw-r--r-- | init.el | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/custom/jao-custom-completion.el b/custom/jao-custom-completion.el index c8966e1..a5b0206 100644 --- a/custom/jao-custom-completion.el +++ b/custom/jao-custom-completion.el @@ -408,5 +408,13 @@ (push 'link-hint-notmuch-part link-hint-types)) +;;; xref +(setq xref-show-definitions-function #'xref-show-definitions-completing-read) + +;; (use-package dumb-jump +;; :ensure t +;; :after xref +;; :config (add-hook 'xref-backend-functions #'dumb-jump-xref-activate)) + ;;; . (provide 'jao-custom-completion) @@ -1845,6 +1845,7 @@ ;;;; code reviews (use-package code-review + :disabled t :ensure t :after forge :bind (:map magit-status-mode-map @@ -2367,7 +2368,7 @@ ;;; Text/data formats ;;;; yaml -(use-package yaml-mode :ensure t) +(use-package yaml-mode :disabled t :ensure t) ;;; Graphics ;;;; images @@ -2377,6 +2378,7 @@ ;;;; gnuplot (use-package gnuplot + :disabled t :ensure t :commands (gnuplot-mode gnuplot-make-buffer) :init (add-to-list 'auto-mode-alist '("\\.gp$" . gnuplot-mode))) |