diff options
Diffstat (limited to 'lua/lspconfig/server_configurations/custom_elements_ls.lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/custom_elements_ls.lua | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lua/lspconfig/server_configurations/custom_elements_ls.lua b/lua/lspconfig/server_configurations/custom_elements_ls.lua index 31b9ae82..61e51a6a 100644 --- a/lua/lspconfig/server_configurations/custom_elements_ls.lua +++ b/lua/lspconfig/server_configurations/custom_elements_ls.lua @@ -1,16 +1,9 @@ local util = require 'lspconfig.util' -local bin_name = 'custom-elements-languageserver' -local cmd = { bin_name, '--stdio' } - -if vim.fn.has 'win32' == 1 then - cmd = { 'cmd.exe', '/C', bin_name, '--stdio' } -end - return { default_config = { init_options = { hostInfo = 'neovim' }, - cmd = cmd, + cmd = { 'custom-elements-languageserver', '--stdio' }, filetypes = { 'javascript', 'javascriptreact', |
