From 75c44aade672dcfe541055daf96806e1883445f4 Mon Sep 17 00:00:00 2001 From: "Connor Lay (Clay)" Date: Wed, 8 Jun 2022 09:05:46 -0700 Subject: [PATCH] elixirLS disable dialyzer by default 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 6ab394b76f45..2961778fdd72 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]]