From 34429ea9804b9a296b9d5dda70c10ce79529ad22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Sun, 19 Oct 2025 19:47:23 +0200 Subject: [PATCH] Use gopls server for golang. --- coc-settings.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/coc-settings.json b/coc-settings.json index 748e57f..0a1e06d 100644 --- a/coc-settings.json +++ b/coc-settings.json @@ -8,6 +8,11 @@ "latex": { "command": "/sbin/texlab", "filetypes": [ "tex","bib","plaintex","context" ] + }, + "golang": { + "command": "gopls", + "rootPatterns": ["go.mod"], + "filetypes": ["go"] } } }