You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
433 B
EmacsLisp

2 years ago
(defvar config-eglot-server-clangd '((c-mode c++-mode) .
("clangd"
"--header-insersion=never")))
(defvar config-eglot-server-rust-analyzer '((rust-mode) .
("rust-analyzer")))
(add-to-list 'eglot-server-programs config-eglot-server-clangd)
(add-to-list 'eglot-server-programs config-eglot-server-rust-analyzer)