aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations
diff options
context:
space:
mode:
authorgeorges boris <georgesboris@gmail.com>2022-02-13 16:33:44 -0300
committerGitHub <noreply@github.com>2022-02-13 11:33:44 -0800
commitb045a483c5fd61419629bb0caa60e24fbdb55ef9 (patch)
treef4080c26dbea4075224b3824dbb23ae1bae04885 /lua/lspconfig/server_configurations
parentfix(grammarly): resolve windows command properly (#1716) (diff)
downloadnvim-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/server_configurations')
-rw-r--r--lua/lspconfig/server_configurations/elmls.lua3
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',
},
},