aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/html.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/server_configurations/html.lua')
-rw-r--r--lua/lspconfig/server_configurations/html.lua9
1 files changed, 1 insertions, 8 deletions
diff --git a/lua/lspconfig/server_configurations/html.lua b/lua/lspconfig/server_configurations/html.lua
index 2f8214f4..e432e2c8 100644
--- a/lua/lspconfig/server_configurations/html.lua
+++ b/lua/lspconfig/server_configurations/html.lua
@@ -1,15 +1,8 @@
local util = require 'lspconfig.util'
-local bin_name = 'vscode-html-language-server'
-local cmd = { bin_name, '--stdio' }
-
-if vim.fn.has 'win32' == 1 then
- cmd = { 'cmd.exe', '/C', bin_name, '--stdio' }
-end
-
return {
default_config = {
- cmd = cmd,
+ cmd = { 'vscode-html-language-server', '--stdio' },
filetypes = { 'html' },
root_dir = util.root_pattern('package.json', '.git'),
single_file_support = true,