-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvscode.json
71 lines (71 loc) · 2.3 KB
/
vscode.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"workbench.startupEditor": "none",
"workbench.iconTheme": "symbols",
"workbench.productIconTheme": "fluent-icons",
"explorer.confirmDelete": false,
"git.autofetch": true,
"extensions.ignoreRecommendations": true,
"workbench.editorAssociations": {
"*.svg": "default"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.fontFamily": "'Cascadia Code', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"git.ignoreMissingGitWarning": true,
"files.autoSave": "afterDelay",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Ubuntu (WSL)": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": [
"-d",
"Ubuntu"
]
}
},
"terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)",
"explorer.confirmDragAndDrop": false,
"security.workspace.trust.untrustedFiles": "open",
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"discord.detailsEditing": "Editing {file_name}",
"discord.detailsDebugging": "Debugging {file_name}",
"discord.largeImage": "Editing a {LANG} file",
"discord.lowerDetailsDebugging": "Debugging: {workspace}",
"window.dialogStyle": "custom",
"window.titleBarStyle": "custom",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": true
},
"thunder-client.codeSnippetLanguage": "cs-httpclient",
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.colorTheme": "Tokyo Night"
}