forked from lewagon/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
79 lines (78 loc) · 2.03 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
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
72
73
74
75
76
77
78
79
{
"editor.detectIndentation": false,
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.insertSpaces": true,
"editor.rulers":
[
80,
120
],
"editor.renderControlCharacters": true,
"editor.snippetSuggestions": "top",
"editor.trimAutoWhitespace": true,
"editor.useTabStops": true,
"editor.fontSize": 17,
"editor.scrollBeyondLastLine": true,
"editor.showFoldingControls": "always",
"emmet.includeLanguages":
{
"erb": "html"
},
"emmet.triggerExpansionOnTab": true,
"explorer.confirmDelete": false,
"window.restoreWindows": "none",
"workbench.settings.editor": "json",
"workbench.settings.openDefaultSettings": true,
"workbench.settings.useSplitJSON": true,
"workbench.iconTheme": "vscode-icons",
"files.hotExit": "off",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.exclude":
{
"__pycache__": true,
"_site": true,
".asset-cache": true,
".bundle": true,
".ipynb_checkpoints": true,
".pytest_cache": true,
".sass-cache": true,
".svn": true,
"**/.DS_Store": true,
"**/.egg-info": true,
"**/.git": false,
"coverage": true,
"log": true,
"public/packs": true,
"tmp": true
},
"files.watcherExclude":
{
"**/audits/**": true,
"**/coverage/**": true,
"**/log/**": true,
"**/node_modules/*/**": false,
"**/tmp/**": true,
"**/vendor/**": true
},
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"[python]":
{
"editor.tabSize": 4
},
"python.pythonPath": "~/.pyenv/shims/python",
"python.formatting.provider": "yapf",
"ruby.lint":
{
"rubocop": true
},
"workbench.startupEditor": "newUntitledFile",
"C_Cpp.files.exclude": {
"**/.vscode": true,
"**/.vs": true
},
}