aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/server.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/server.lua')
-rw-r--r--lua/nvim-lsp-installer/server.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/server.lua b/lua/nvim-lsp-installer/server.lua
index 5e3c9e87..e921d2bc 100644
--- a/lua/nvim-lsp-installer/server.lua
+++ b/lua/nvim-lsp-installer/server.lua
@@ -5,7 +5,7 @@ local path = require "nvim-lsp-installer.path"
local M = {}
function M.get_server_root_path(server)
- return path.concat { vim.fn.stdpath "data", "lsp_servers", server }
+ return path.concat { path.SERVERS_ROOT_DIR, server }
end
M.Server = {}