forked from MikeMcQuaid/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 6
/
vscode-settings.json
36 lines (36 loc) · 1.21 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
{
"files.autoSave": "onFocusChange",
"editor.fontFamily": "'SF Mono', Consolas, monospace",
"editor.renderWhitespace": "boundary",
"editor.multiCursorModifier": "ctrlCmd",
"editor.wordWrap": "bounded",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"window.titleBarStyle": "native",
"workbench.editor.tabCloseButton": "left",
"editor.renderLineHighlight": "none",
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"editor.minimap.enabled": false,
"editor.glyphMargin": false,
"editor.renderIndentGuides": true,
"editor.selectionHighlight": false,
"workbench.iconTheme": "macos-classic-icons",
"workbench.startupEditor": "none",
"ruby.codeCompletion": "rcodetools",
"ruby.format": "rubocop",
"ruby.intellisense": "rubyLocate",
"ruby.lint": {
"reek": true,
"rubocop": true,
"ruby": true, //Runs ruby -wc
"fasterer": true,
"debride": true,
"ruby-lint": true
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"window.zoomLevel": 0,
"workbench.colorTheme": "Night Owl",
}