From 6731833f24fc15b644df536a946577dd1cff83dc Mon Sep 17 00:00:00 2001 From: niklascarlsson Date: Sun, 12 Jan 2020 22:27:41 +0100 Subject: [PATCH] Update lsp-server-install-dir location Update the lsp-server-install-dir to doom-etc-dir install of the default which is directly at the root of the emacs dir. --- modules/tools/lsp/config.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/tools/lsp/config.el b/modules/tools/lsp/config.el index a88592461..7333863dc 100644 --- a/modules/tools/lsp/config.el +++ b/modules/tools/lsp/config.el @@ -22,7 +22,8 @@ This can be a single company backend or a list thereof. It can be anything (setq lsp-keep-workspace-alive nil) ;; For `lsp-clients' - (setq lsp-fsharp-server-install-dir (concat doom-etc-dir "lsp-fsharp/") + (setq lsp-server-install-dir (concat doom-etc-dir "lsp") + lsp-fsharp-server-install-dir (concat doom-etc-dir "lsp-fsharp/") lsp-groovy-server-install-dir (concat doom-etc-dir "lsp-groovy/") lsp-intelephense-storage-path (concat doom-cache-dir "lsp-intelephense/"))