My personal emacs configuration

rustic: Configure to use eglot as the LSP client

+5 -2
+5 -2
init.el
··· 128 128 (setq lsp-eldoc-hook nil) 129 129 (setq lsp-enable-symbol-highlighting nil) 130 130 (setq lsp-signature-auto-activate nil) 131 - (setq rustic-format-on-save t) 132 - (add-hook 'rustic-mode-hook 'rk/rustic-mode-hook)) 131 + (add-hook 'rustic-mode-hook 'rk/rustic-mode-hook) 132 + :custom 133 + (rustic-format-on-save t) 134 + (rustic-lsp-client 'eglot) 135 + (rustic-enable-detached-file-support t)) 133 136 (defun rk/rustic-mode-hook () 134 137 (when buffer-file-name 135 138 (setq-local buffer-save-without-query t)))