diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/terraformls/init.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/nvim-lsp-installer/servers/terraformls/init.lua b/lua/nvim-lsp-installer/servers/terraformls/init.lua index bf9e6cb5..4cc26162 100644 --- a/lua/nvim-lsp-installer/servers/terraformls/init.lua +++ b/lua/nvim-lsp-installer/servers/terraformls/init.lua @@ -1,6 +1,5 @@ local server = require "nvim-lsp-installer.server" local process = require "nvim-lsp-installer.process" -local path = require "nvim-lsp-installer.path" local platform = require "nvim-lsp-installer.platform" local Data = require "nvim-lsp-installer.data" local github = require "nvim-lsp-installer.core.managers.github" @@ -45,7 +44,7 @@ return function(name, root_dir) end, default_options = { cmd_env = { - PATH = process.extend_path { path.concat { root_dir, "terraform-ls" } }, + PATH = process.extend_path { root_dir }, }, }, } |
