From f37ffaa3a1c7754238029390db00148ec8105874 Mon Sep 17 00:00:00 2001 From: Clay Date: Thu, 9 Jun 2022 18:45:17 -0700 Subject: [PATCH] elixirLS disable dialyzer by default (#2710) Not all Elixir projects use dialyzer and it can cause the editor to slow down quite a bit on large projects if the PLT is not built. See https://github.com/elixir-lsp/elixir-ls#dialyzer-integration= --- languages.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/languages.toml b/languages.toml index 6ab394b76..2961778fd 100644 --- a/languages.toml +++ b/languages.toml @@ -88,6 +88,7 @@ shebangs = ["elixir"] roots = [] comment-token = "#" language-server = { command = "elixir-ls" } +config = { elixirLS.dialyzerEnabled = false } indent = { tab-width = 2, unit = " " } [[grammar]]