.gitignore 🔗
@@ -22,7 +22,7 @@ vendor/
*.swo
*~
-# Crush database files
+# Crush Agent stuff
.crush/
# macOS
Amolith created
This adds the initial configuration for the Crush agent,
specifically setting up the Go language server protocol (LSP) via gopls.
.gitignore | 2 +-
crush.json | 8 ++++++++
2 files changed, 9 insertions(+), 1 deletion(-)
@@ -22,7 +22,7 @@ vendor/
*.swo
*~
-# Crush database files
+# Crush Agent stuff
.crush/
# macOS
@@ -0,0 +1,8 @@
+{
+ "$schema": "https://charm.land/crush.json",
+ "lsp": {
+ "Go": {
+ "command": "gopls"
+ }
+ }
+}