diff options
| author | georges boris <georgesboris@gmail.com> | 2022-02-13 16:33:44 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-13 11:33:44 -0800 |
| commit | b045a483c5fd61419629bb0caa60e24fbdb55ef9 (patch) | |
| tree | f4080c26dbea4075224b3824dbb23ae1bae04885 /lua/lspconfig | |
| parent | fix(grammarly): resolve windows command properly (#1716) (diff) | |
| download | nvim-lspconfig-b045a483c5fd61419629bb0caa60e24fbdb55ef9.tar nvim-lspconfig-b045a483c5fd61419629bb0caa60e24fbdb55ef9.tar.gz nvim-lspconfig-b045a483c5fd61419629bb0caa60e24fbdb55ef9.tar.bz2 nvim-lspconfig-b045a483c5fd61419629bb0caa60e24fbdb55ef9.tar.lz nvim-lspconfig-b045a483c5fd61419629bb0caa60e24fbdb55ef9.tar.xz nvim-lspconfig-b045a483c5fd61419629bb0caa60e24fbdb55ef9.tar.zst nvim-lspconfig-b045a483c5fd61419629bb0caa60e24fbdb55ef9.zip | |
chore(elmls): remove overriding elm paths (#1718)
As stated in the [elm-language-server docs](https://github.com/elm-tooling/elm-language-server#server-settings) – the default value of elm binaries should be an empty string so the language server searches for binaries as local project installs and only use global ones as fallback. If we specify it as the standard "global values" like this config is currently doing, we're just going straight to the fallback, breaking compatibility with local installs.
Diffstat (limited to 'lua/lspconfig')
| -rw-r--r-- | lua/lspconfig/server_configurations/elmls.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lua/lspconfig/server_configurations/elmls.lua b/lua/lspconfig/server_configurations/elmls.lua index bac26550..721f73e0 100644 --- a/lua/lspconfig/server_configurations/elmls.lua +++ b/lua/lspconfig/server_configurations/elmls.lua @@ -25,9 +25,6 @@ return { end end, init_options = { - elmPath = 'elm', - elmFormatPath = 'elm-format', - elmTestPath = 'elm-test', elmAnalyseTrigger = 'change', }, }, |
