vscode: don't use copilot in properties (.env) files

This commit is contained in:
John Bowdre 2024-01-02 14:37:39 -06:00
parent 61ef08fa5c
commit 69291566ee

View file

@ -159,8 +159,9 @@
"git.ignoreLegacyWarning" = true; "git.ignoreLegacyWarning" = true;
"github.copilot.enable" = { "github.copilot.enable" = {
"*" = true; "*" = true;
"plaintext" = true;
"markdown" = false; "markdown" = false;
"plaintext" = true;
"properties" = false;
"scminput" = false; "scminput" = false;
"yaml" = true; "yaml" = true;
}; };