-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
46 lines (44 loc) · 1.33 KB
/
settings.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
{
"workbench.colorTheme": "Default Dark Modern",
"terminal.integrated.sendKeybindingsToShell": true,
"terminal.integrated.commandsToSkipShell": [
// ... other commands
"workbench.action.terminal.findNext",
"workbench.action.nextSelectionMatchFindAction",
"editor.action.terminal.findNext",
"editor.action.nextSelectionMatchFindAction",
],
"terminal.integrated.copyOnSelection": true,
"security.allowedUNCHosts": [
"wsl.localhost"
],
"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"
},
"UbuntuJammy (WSL)": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": [
"-d",
"UbuntuJammy",
"--cd",
"~"
]
}
},
"terminal.integrated.defaultProfile.windows": "UbuntuJammy (WSL)"
"terminal.integrated.automationProfile.linux": {},
"terminal.integrated.tabs.title": "${sequence}"
}