summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2022-07-19 00:01:11 -0700
committerLibravatar Terin Stock <terinjokes@gmail.com>2022-07-19 00:05:39 -0700
commite883ec6f3933e11f80f808d35c34e1d64867313b (patch)
tree27c82c27a3a45f68cf3a28d05d1148b7f50e9156
parentgnus: manage workspaces (diff)
downloaddoom-emacs-e883ec6f3933e11f80f808d35c34e1d64867313b.tar.xz
flycheck: disable eglot checker
The eglot checker provided by Doom seems to cause infinite spawning of `golangci-lint` when coupled with `gopls`. I don't have time to investigate why, so just disable it for now.
-rw-r--r--config.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.el b/config.el
index a16e4e6..e7b0622 100644
--- a/config.el
+++ b/config.el
@@ -80,6 +80,7 @@
(load! "app/osm")
(when (featurep! :tools lsp +eglot)
+ (setq! flycheck-disabled-checkers '(eglot))
(set-eglot-client! 'c-mode '("clangd" "-j=3" "--clang-tidy"))
(set-eglot-client! 'terraform-mode '("terraform-ls" "serve")))