tangled
alpha
login
or
join now
nesv.ca
/
emacs.d
0
fork
atom
My personal emacs configuration
0
fork
atom
overview
issues
pulls
pipelines
rustic: Configure to use eglot as the LSP client
nesv.ca
2 years ago
ff822fdd
60253c82
+5
-2
1 changed file
expand all
collapse all
unified
split
init.el
+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
131
-
(setq rustic-format-on-save t)
132
132
-
(add-hook 'rustic-mode-hook 'rk/rustic-mode-hook))
131
131
+
(add-hook 'rustic-mode-hook 'rk/rustic-mode-hook)
132
132
+
:custom
133
133
+
(rustic-format-on-save t)
134
134
+
(rustic-lsp-client 'eglot)
135
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)))