diff options
| author | Hauke Ingwersen <54020682+hingew@users.noreply.github.com> | 2024-05-06 07:40:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-06 13:40:37 +0800 |
| commit | 59351b844289da9297e31bd17decf6b7a1f7499d (patch) | |
| tree | c3815381611b5ca89be196479f4fda3b8e508ea1 /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-59351b844289da9297e31bd17decf6b7a1f7499d.tar nvim-lspconfig-59351b844289da9297e31bd17decf6b7a1f7499d.tar.gz nvim-lspconfig-59351b844289da9297e31bd17decf6b7a1f7499d.tar.bz2 nvim-lspconfig-59351b844289da9297e31bd17decf6b7a1f7499d.tar.lz nvim-lspconfig-59351b844289da9297e31bd17decf6b7a1f7499d.tar.xz nvim-lspconfig-59351b844289da9297e31bd17decf6b7a1f7499d.tar.zst nvim-lspconfig-59351b844289da9297e31bd17decf6b7a1f7499d.zip | |
fix(elmls): add missing init_options, remove deprecated (#3138)
Co-authored-by: Hauke Ingwersen <me@hing.dev>
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/elmls.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/lspconfig/server_configurations/elmls.lua b/lua/lspconfig/server_configurations/elmls.lua index bd2caccc..f42449d4 100644 --- a/lua/lspconfig/server_configurations/elmls.lua +++ b/lua/lspconfig/server_configurations/elmls.lua @@ -18,7 +18,10 @@ return { end end, init_options = { - elmAnalyseTrigger = 'change', + elmReviewDiagnostics = 'off', -- 'off' | 'warning' | 'error' + skipInstallPackageConfirmation = false, + disableElmLSDiagnostics = false, + onlyUpdateDiagnosticsOnSave = false, }, }, docs = { |
