This commit is contained in:
2026-08-26 02:33:23 -07:00
parent 81bcc87e33
commit b2cf68380f
+7 -1
View File
@@ -1543,6 +1543,8 @@ With PROJECT, give diagnostics for all buffers in the current project."
:custom :custom
(eglot-autoshutdown t) (eglot-autoshutdown t)
(eglot-ignored-server-capabilities '(:documentOnTypeFormattingProvider)) (eglot-ignored-server-capabilities '(:documentOnTypeFormattingProvider))
:custom-face
(eglot-semantic-operator ((t (:inherit default))))
:init :init
(defun my/eglot-if-trusted () (defun my/eglot-if-trusted ()
(when (trusted-content-p) (when (trusted-content-p)
@@ -3903,7 +3905,11 @@ one of the normal rainbow-delimiters-depth-N-face faces."
ahs-plugin-default-face 'bold ahs-plugin-default-face 'bold
ahs-plugin-default-face-unfocused 'bold) ahs-plugin-default-face-unfocused 'bold)
:config :config
(keymap-unset auto-highlight-symbol-mode-map "C-x C-a" t)) (keymap-unset auto-highlight-symbol-mode-map "C-x C-a" t)
(defun my/-ahs-remove-help-echo (&rest _r)
"Remove the \\=help-echo property from ahs overlays."
(mapc (lambda (ov) (overlay-put ov 'help-echo nil)) ahs-current-overlay))
(advice-add 'ahs-highlight-current-symbol :after #'my/-ahs-remove-help-echo))
;; some AI stuff ;; some AI stuff
;; completion ;; completion