From 9292f0c03870104d037cc293e65683f2e88471b5 Mon Sep 17 00:00:00 2001 From: Ian Langworth Date: Thu, 18 Jul 2024 13:24:40 -0400 Subject: [PATCH] Updates --- .vscode-mac.settings.json | 6 +++++- .vscode-snippets/typescriptreact.json | 16 ++-------------- .zshrc | 1 + 3 files changed, 8 insertions(+), 15 deletions(-) diff --git a/.vscode-mac.settings.json b/.vscode-mac.settings.json index 89e38e4a..45d8a132 100644 --- a/.vscode-mac.settings.json +++ b/.vscode-mac.settings.json @@ -205,5 +205,9 @@ "typescript.autoClosingTags": false, "debug.onTaskErrors": "showErrors", "godotTools.editorPath.godot3": "/Applications/Godot.app/Contents/MacOS/Godot", - "godotTools.editorPath.godot4": "/Applications/Godot.app/Contents/MacOS/Godot" + "godotTools.editorPath.godot4": "/Applications/Godot.app/Contents/MacOS/Godot", + "github.copilot.editor.enableAutoCompletions": true, + "arduino.logLevel": "verbose", + "arduino.path": "/opt/homebrew/bin/arduino-cli", + "arduino.commandPath": "/opt/homebrew/bin/arduino-cli" } diff --git a/.vscode-snippets/typescriptreact.json b/.vscode-snippets/typescriptreact.json index 0ac32a0a..66e80afc 100644 --- a/.vscode-snippets/typescriptreact.json +++ b/.vscode-snippets/typescriptreact.json @@ -1,7 +1,7 @@ { - // Place your snippets for typescript here. Each snippet is defined under a snippet name and has a prefix, body and + // Place your snippets for typescript here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: - // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the + // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the // same ids are connected. // Example: "XXX Debug": { @@ -34,18 +34,6 @@ "{$1}", ], }, - "console.log": { - "prefix": "clog", - "body": [ - "console.log($1)", - ], - }, - "console.error": { - "prefix": "cerr", - "body": [ - "console.error($1)", - ], - }, "className": { "prefix": "cn=", "body": [ diff --git a/.zshrc b/.zshrc index 3e23a7c5..f38b5423 100644 --- a/.zshrc +++ b/.zshrc @@ -200,6 +200,7 @@ alias gup='git up' alias gus='git unstage' alias gvc='vim `git diff --name-only --diff-filter=U`' alias gvm='vim `git diff --name-only --diff-filter=M`' +alias gz='git undo' alias h='heroku' alias i4='sed "s/^/ /"' alias icat='imgcat'