-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkosmos.code-workspace
More file actions
45 lines (45 loc) · 1.3 KB
/
kosmos.code-workspace
File metadata and controls
45 lines (45 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"folders": [
{
"path": "."
}
],
"settings": {
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true
},
"github.copilot.chat.localeOverride": "zh-CN",
"github.copilot.chat.welcomeMessage": "never",
"github.copilot.chat.useInstructionFiles": true,
"github.copilot.chat.instructionFile": ".vscode/copilot-instructions.md",
"github.copilot.chat.autoApprove": true,
"github.copilot.chat.autoContinue": true,
"github.copilot.chat.autoExecute": true,
"github.copilot.chat.confirmations": false,
"github.copilot.editor.enableAutoCompletions": true,
"github.copilot.editor.enableCodeActions": true,
"github.copilot.editor.acceptSuggestionOnCommitCharacter": true,
"github.copilot.editor.acceptSuggestionOnEnter": "on",
"github.copilot.editor.tabCompletion": "on",
"github.copilot.advanced": {
"debug.overrideEngine": "codex",
"inlineSuggestCount": 3,
"listCount": 10
},
"files.associations": {
"*.prompt.md": "markdown"
},
"markdown.suggest.paths.enabled": true,
"markdown.preview.breaks": true
},
"extensions": {
"recommendations": [
"github.copilot",
"github.copilot-chat",
"ms-vscode.vscode-typescript-next"
]
}
}