diff options
Diffstat (limited to 'ftplugin/elm.lua')
| -rw-r--r-- | ftplugin/elm.lua | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/ftplugin/elm.lua b/ftplugin/elm.lua index 3572a607..ffd97a2a 100644 --- a/ftplugin/elm.lua +++ b/ftplugin/elm.lua @@ -1,9 +1,9 @@ -require'lspconfig'.elmls.setup { -    cmd = {DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-language-server"}, -	init_options= { -		elmAnalyseTrigger = "change", -		elmFormatPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-format", -    	elmPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm", -    	elmTestPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-test" -	} +require("lspconfig").elmls.setup { +  cmd = { DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-language-server" }, +  init_options = { +    elmAnalyseTrigger = "change", +    elmFormatPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-format", +    elmPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm", +    elmTestPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-test", +  },  } | 
