-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvscode_user_settings.json
33 lines (32 loc) · 1.01 KB
/
vscode_user_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
{
"editor.formatOnType": false,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "trailing",
"explorer.excludeGitIgnore": true,
"workbench.startupEditor": "none",
"workbench.colorCustomizations": {
"editorWhitespace.foreground": "#ff0000",
},
"terminal.explorerKind": "external",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.scrollback": 10000,
"terminal.integrated.defaultLocation": "editor",
"terminal.integrated.defaultProfile": "zsh",
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/__pycache__/": true,
"**/.*": true,
},
"debug.internalConsoleOptions": "neverOpen",
"extensions.ignoreRecommendations": true,
"vim.vimrc.enable": true,
}