chore(tooling): add crush config for go lsp

Amolith created

This adds the initial configuration for the Crush agent,
specifically setting up the Go language server protocol (LSP) via gopls.

Change summary

.gitignore | 2 +-
crush.json | 8 ++++++++
2 files changed, 9 insertions(+), 1 deletion(-)

Detailed changes

.gitignore 🔗

@@ -22,7 +22,7 @@ vendor/
 *.swo
 *~
 
-# Crush database files
+# Crush Agent stuff
 .crush/
 
 # macOS

crush.json 🔗

@@ -0,0 +1,8 @@
+{
+	"$schema": "https://charm.land/crush.json",
+	"lsp": {
+		"Go": {
+			"command": "gopls"
+		}
+	}
+}