mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-27 03:22:18 +00:00
Compare commits
2 commits
3d1fd7746c
...
11f7130789
Author | SHA1 | Date | |
---|---|---|---|
11f7130789 | |||
6254e6df8e |
1 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue