-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode-settings.json
40 lines (40 loc) · 1.15 KB
/
vscode-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
{
"editor.fontFamily": "'Cascadia Code'",
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "all",
"editor.scrollBeyondLastLine": false,
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"git.enableCommitSigning": true,
"git.fetchOnPull": true,
"search.smartCase": true,
"terminal.integrated.tabs.enabled": true,
"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"
},
"WSL": {
"path": [
"C:\\Windows\\System32\\wsl.exe"
],
"args": [],
"icon": "terminal-ubuntu-wsl"
}
},
"window.autoDetectColorScheme": false,
"workbench.colorTheme": "Community Material Theme",
"workbench.preferredDarkColorTheme": "Community Material Theme",
"workbench.startupEditor": "none",
"terminal.integrated.defaultProfile.windows": "WSL"
}