Updating Doom Emacs.

This commit is contained in:
Derek Taylor
2020-06-19 22:43:40 -05:00
parent 0f664d532a
commit a5c86c514a
453 changed files with 13527 additions and 12455 deletions

View File

@@ -12,13 +12,11 @@
(warn! "Couldn't find cargo binary"))
(if (featurep! +lsp)
(let ((lsp-server 'rls))
(when (require 'rustic nil t)
(setq lsp-server rustic-lsp-server))
(pcase lsp-server
(when (require 'rustic nil t)
(pcase rustic-lsp-server
(`rust-analyzer
(unless (executable-find "ra_lsp_server")
(warn! "Couldn't find rust analyzer (ra_lsp_server)")))
(unless (executable-find "rust-analyzer")
(warn! "Couldn't find rust analyzer (rust-analyzer)")))
(`rls
(unless (executable-find "rls")
(warn! "Couldn't find rls")))))