forked from lewagon/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
69 lines (69 loc) · 1.9 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
{
"editor.detectIndentation": false,
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.insertSpaces": true,
"editor.tabSize": 2,
"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-great-icons",
"files.hotExit": "off",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"node_modules": true,
"tmp": true,
"log": true,
".asset-cache": true,
".bundle": true,
".ipynb_checkpoints": true,
".pytest_cache": true,
".sass-cache": true,
".svn": true,
"__pycache__": true,
"_site": true,
"build": true,
"coverage": true,
"dist": true,
"public/packs": true,
},
"files.watcherExclude": {
"**/audits/**": true,
"**/coverage/**": true,
"**/log/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/vendor/**": true
},
"git.enabled": false,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"[python]": {
"editor.tabSize": 4,
},
// Ruby extension
"ruby.useBundler": true,
"ruby.useLanguageServer": true,
"ruby.format": "rubocop",
"ruby.lint": {
"rubocop": true
},
"ruby.intellisense": "rubyLocate",
}