changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / emacs/default.el

revision 678: 2b7d5a8d63ac
parent 677: 585f14458a65
child 690: 90417ae14b21
     1.1--- a/emacs/default.el	Tue Sep 24 22:19:05 2024 -0400
     1.2+++ b/emacs/default.el	Wed Sep 25 21:39:39 2024 -0400
     1.3@@ -99,7 +99,7 @@
     1.4    use-package-always-ensure t
     1.5    use-package-expand-minimally t)
     1.6   (add-packages
     1.7-   eglot-x ;; LSP extensions
     1.8+   ;; eglot-x ;; LSP extensions
     1.9    org-web-tools ;; web parsing
    1.10    citeproc ;; citations
    1.11    htmlize ;; html export
    1.12@@ -338,15 +338,15 @@
    1.13   scsh-program "scsh")
    1.14 
    1.15 ;;; Eglot
    1.16-(with-eval-after-load 'eglot
    1.17-  (unless (package-installed-p 'eglot-x)
    1.18-    (package-vc-install '(eglot-x :url "https://vc.compiler.company/packy/eglot-x")))
    1.19-  (require 'eglot-x)
    1.20-  (with-eval-after-load 'eglot-x
    1.21-    (add-to-list 'eglot-server-programs
    1.22-                 '((rust-ts-mode rust-mode) .
    1.23-                   ("rust-analyzer" :initializationOptions (:check (:command "clippy")))))
    1.24-    (eglot-x-setup)))
    1.25+;; (with-eval-after-load 'eglot
    1.26+;;   (unless (package-installed-p 'eglot-x)
    1.27+;;     (package-vc-install '(eglot-x :url "https://vc.compiler.company/packy/eglot-x")))
    1.28+;;   (require 'eglot-x)
    1.29+;;   (with-eval-after-load 'eglot-x
    1.30+;;     (add-to-list 'eglot-server-programs
    1.31+;;                  '((rust-ts-mode rust-mode) .
    1.32+;;                    ("rust-analyzer" :initializationOptions (:check (:command "clippy")))))
    1.33+;;     (eglot-x-setup)))
    1.34 
    1.35 ;;; Rust
    1.36 (add-hook 'rust-mode-hook 'eglot-ensure)