-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
58 lines (58 loc) · 1.75 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
{
"editor.tabSize": 2,
"editor.acceptSuggestionOnEnter": "off",
"editor.bracketPairColorization.enabled": false,
"editor.cursorSurroundingLines": 4,
"editor.dragAndDrop": false,
"editor.guides.bracketPairs": true,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.smoothScrolling": false,
"editor.wordWrap": "on",
"editor.wrappingIndent": "deepIndent",
"workbench.editor.closeOnFileDelete": true,
"workbench.fontAliasing": "auto",
"workbench.startupEditor": "none",
"workbench.tree.renderIndentGuides": "always",
"files.autoSaveDelay": 500,
"files.exclude": {
"**/.git": true,
".vscode": true,
".bundle": true,
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"screencastMode.keyboardOptions": {
"showKeys": false,
"showKeybindings": true,
"showCommands": false,
"showCommandGroups": false,
"showSingleEditorCursorMoves": true
},
"screencastMode.verticalOffset": 10,
"explorer.compactFolders": false,
"explorer.incrementalNaming": "smart",
"html.format.preserveNewLines": true,
"html.format.templating": true,
"terminal.integrated.altClickMovesCursor": true,
"terminal.integrated.defaultProfile.linux": "bash",
"vscode-erb-beautify.keepBlankLines": 1,
"gitpod.openInStable.neverPrompt": true,
"gitlens.showWelcomeOnInstall": false,
"gitlens.currentLine.enabled": false,
"emmet.includeLanguages": {
"erb": "html"
},
"[ruby]": {
"editor.defaultFormatter": "mbessey.vscode-rufo",
"editor.formatOnSave": false
},
"[erb]": {
"editor.defaultFormatter": "aliariff.vscode-erb-beautify",
"editor.formatOnSave": false,
"editor.autoClosingBrackets": "beforeWhitespace"
},
"files.associations": {
"*.html.erb": "erb"
}
}