diff options
author | 2022-07-19 00:01:11 -0700 | |
---|---|---|
committer | 2022-07-19 00:05:39 -0700 | |
commit | e883ec6f3933e11f80f808d35c34e1d64867313b (patch) | |
tree | 27c82c27a3a45f68cf3a28d05d1148b7f50e9156 | |
parent | gnus: manage workspaces (diff) | |
download | doom-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.el | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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"))) |