forked from johnthebrit/PowerShellMC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VSCodeSettingsSample.json
32 lines (30 loc) · 1.05 KB
/
VSCodeSettingsSample.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
{
"git.ignoreMissingGitWarning": true,
"powershell.powerShellExePath": "c:\\Program Files\\PowerShell\\6\\pwsh.exe",
"editor.minimap.enabled": false,
"window.menuBarVisibility": "default",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"terminal.integrated.shell.windows": "c:\\Program Files\\PowerShell\\6\\pwsh.exe",
"editor.tabCompletion": "on",
"files.defaultLanguage": "powershell",
"powershell.integratedConsole.focusConsoleOnExecute": false,
"git.path": "C:\\Program Files\\Git\\bin\\git.exe",
"shellLauncher.shells.windows": [{
"shell": "c:\\Program Files\\PowerShell\\6\\pwsh.exe",
"label": "PowerShell Core"
},
{
"shell": "C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe",
"label": "Windows PowerShell"
},
{
"shell": "C:\\Windows\\system32\\cmd.exe",
"label": "Windows Command Prompt"
}
],
"sync.gist": "<GIST ID>",
"sync.autoDownload": true,
"git.autofetch": true,
"sync.autoUpload": true
}