Compare commits

...

2 commits

Author SHA1 Message Date
11f7130789 vscode: add date snippet 2024-05-28 13:39:23 -05:00
6254e6df8e vscode: fix settings mismatch 2024-05-28 09:55:48 -05:00

View file

@ -73,6 +73,11 @@
} }
]; ];
globalSnippets = { globalSnippets = {
"Insert datestamp" = {
prefix = ["date"];
body = ["\"\${CURRENT_YEAR}-\${CURRENT_MONTH}-\${CURRENT_DATE}\""];
description = "Insert date";
};
"Insert timestamp" = { "Insert timestamp" = {
prefix = ["datetime"]; prefix = ["datetime"];
body = ["\"\${CURRENT_YEAR}-\${CURRENT_MONTH}-\${CURRENT_DATE}T\${CURRENT_HOUR}:\${CURRENT_MINUTE}:\${CURRENT_SECOND}Z\""]; body = ["\"\${CURRENT_YEAR}-\${CURRENT_MONTH}-\${CURRENT_DATE}T\${CURRENT_HOUR}:\${CURRENT_MINUTE}:\${CURRENT_SECOND}Z\""];
@ -186,7 +191,7 @@
"editor.acceptSuggestionOnCommitCharacter" = false; "editor.acceptSuggestionOnCommitCharacter" = false;
"editor.acceptSuggestionOnEnter" = "off"; "editor.acceptSuggestionOnEnter" = "off";
"editor.detectIndentation" = false; "editor.detectIndentation" = false;
"editor.fontFamily" = "'Berkeley Mono', 'Droid Sans Mono', 'monospace', monospace"; "editor.fontFamily" = "'Berkeley Mono', 'Droid Sans Mono', 'monospace'";
"editor.fontLigatures" = true; "editor.fontLigatures" = true;
"editor.inlineSuggest.enabled" = true; "editor.inlineSuggest.enabled" = true;
"editor.lineNumbers" = "relative"; "editor.lineNumbers" = "relative";
@ -206,6 +211,7 @@
"files.trimTrailingWhitespace" = true; "files.trimTrailingWhitespace" = true;
"git.confirmSync" = false; "git.confirmSync" = false;
"git.ignoreLegacyWarning" = true; "git.ignoreLegacyWarning" = true;
"github.copilot.editor.enableAutoCompletions" = true;
"github.copilot.enable" = { "github.copilot.enable" = {
"*" = true; "*" = true;
"gemini" = false; "gemini" = false;