Disable automatic document highlighting in eglot

This causes lagging while highlighting symbols, and the highlighting itself does
not add much value.  Disabling it thus does not hurt and gets rid of the
lagging.
这个提交包含在:
Daniel - 2021-03-31 21:27:20 +02:00
父节点 e2bd3880f1
当前提交 6a590da9cb
找不到此签名对应的密钥
GPG 密钥 ID: 1C7071A75BB72D64
共有 1 个文件被更改,包括 4 次插入1 次删除

查看文件

@ -1478,7 +1478,10 @@
(use-package eglot
:ensure t
:commands (eglot-ensure))
:commands (eglot-ensure)
;; Highlighting takes a lot of time and does not add much value, so let's just
;; disable it
:init (setq eglot-ignored-server-capabilites '(:documentHighlightProvider)))
;; * Mail