update: imac config

This commit is contained in:
wyj
2024-11-03 20:52:21 -05:00
parent 0316aaead6
commit 09c7389823
160 changed files with 10740 additions and 116 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"map declaration": {
"prefix": "map",
"body": "map[${1:type}]${2:type}",
"description": "Snippet for a map"
},
"goroutine anonymous function": {
"prefix": "go",
"body": "go func($1) {\n\t$0\n}($2)",
"description": "Snippet for anonymous goroutine declaration"
},
"goroutine function": {
"prefix": "gf",
"body": "go ${1:func}($0)",
"description": "Snippet for goroutine declaration"
}
}