emacs: silence YAML lsp warning about ordering of keys
Alan Pearce alan@alanpearce.eu
Mon, 05 Jun 2023 16:47:15 +0200
1 files changed, 3 insertions(+), 1 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -1073,7 +1073,9 @@ :config (progn (add-to-list 'eglot-stay-out-of 'company) (defun my/setup-eglot-eldoc () (push 'flymake-eldoc-function eldoc-documentation-functions)) - (add-hook 'eglot-managed-mode-hook 'my/setup-eglot-eldoc))) + (add-hook 'eglot-managed-mode-hook 'my/setup-eglot-eldoc) + (setq-default eglot-workspace-configuration + '(:yaml (:keyOrdering nil))))) (use-package consult-eglot :commands (consult-eglot-symbols)