mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-26 19:12: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 = {
|
||||
"Insert datestamp" = {
|
||||
prefix = ["date"];
|
||||
body = ["\"\${CURRENT_YEAR}-\${CURRENT_MONTH}-\${CURRENT_DATE}\""];
|
||||
description = "Insert date";
|
||||
};
|
||||
"Insert timestamp" = {
|
||||
prefix = ["datetime"];
|
||||
body = ["\"\${CURRENT_YEAR}-\${CURRENT_MONTH}-\${CURRENT_DATE}T\${CURRENT_HOUR}:\${CURRENT_MINUTE}:\${CURRENT_SECOND}Z\""];
|
||||
|
@ -186,7 +191,7 @@
|
|||
"editor.acceptSuggestionOnCommitCharacter" = false;
|
||||
"editor.acceptSuggestionOnEnter" = "off";
|
||||
"editor.detectIndentation" = false;
|
||||
"editor.fontFamily" = "'Berkeley Mono', 'Droid Sans Mono', 'monospace', monospace";
|
||||
"editor.fontFamily" = "'Berkeley Mono', 'Droid Sans Mono', 'monospace'";
|
||||
"editor.fontLigatures" = true;
|
||||
"editor.inlineSuggest.enabled" = true;
|
||||
"editor.lineNumbers" = "relative";
|
||||
|
@ -206,6 +211,7 @@
|
|||
"files.trimTrailingWhitespace" = true;
|
||||
"git.confirmSync" = false;
|
||||
"git.ignoreLegacyWarning" = true;
|
||||
"github.copilot.editor.enableAutoCompletions" = true;
|
||||
"github.copilot.enable" = {
|
||||
"*" = true;
|
||||
"gemini" = false;
|
||||
|
|
Loading…
Reference in a new issue