fix(emacs): disable lsp formatting
build / build (push) Failing after 43s

This commit is contained in:
2026-07-07 16:43:11 -06:00
parent 5d502329a2
commit b91a681072
@@ -25,8 +25,12 @@
:general (:keymaps 'syd-leader-code-map
"a" #'lsp-execute-code-action
"r" #'lsp-rename)
:custom (; Fixes type error when using rename.
(lsp-rename-use-prepare nil))
:custom (;; Fixes type error when using rename.
(lsp-rename-use-prepare nil)
;; Don't override `indent-region' with the server's
;; formatting functionality. Very silly, I think —
;; indentation and formatting are different things.
(lsp-enable-indentation nil))
:config
(syd-defadvice syd-lsp-install-server-a ()
"Override and disbale `lsp-install-server'"