diff options
Diffstat (limited to 'lua/nvim-lsp-installer/servers/fsautocomplete/init.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/fsautocomplete/init.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lua/nvim-lsp-installer/servers/fsautocomplete/init.lua b/lua/nvim-lsp-installer/servers/fsautocomplete/init.lua index 5c951a8a..a14a7286 100644 --- a/lua/nvim-lsp-installer/servers/fsautocomplete/init.lua +++ b/lua/nvim-lsp-installer/servers/fsautocomplete/init.lua @@ -1,5 +1,4 @@ local server = require "nvim-lsp-installer.server" -local path = require "nvim-lsp-installer.path" local process = require "nvim-lsp-installer.process" local std = require "nvim-lsp-installer.installers.std" @@ -33,9 +32,8 @@ return function(name, root_dir) end, }, default_options = { - cmd = { - path.concat { root_dir, "fsautocomplete" }, - "--background-service-enabled", + cmd_env = { + PATH = process.extend_path { root_dir }, }, }, } |
