From 9a9688390bc2aa6131e6e8f2c181e433de7f1e0d Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Mon, 19 Aug 2024 13:00:18 -0400 Subject: [PATCH] fix(go): enable `gofumpt` in `gopls` by default --- lua/astrocommunity/pack/go/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/astrocommunity/pack/go/init.lua b/lua/astrocommunity/pack/go/init.lua index 1d051ee0e..b0578f1bd 100644 --- a/lua/astrocommunity/pack/go/init.lua +++ b/lua/astrocommunity/pack/go/init.lua @@ -43,6 +43,7 @@ return { buildFlags = { "-tags", "integration" }, completeUnimported = true, diagnosticsDelay = "500ms", + gofumpt = true, matcher = "Fuzzy", semanticTokens = true, staticcheck = true,