forked from MikeMcQuaid/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.json
84 lines (84 loc) · 2.75 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
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
80
81
82
83
84
{
"editor.fontFamily": "'SF Mono', Menlo, Monaco, Consolas, monospace",
"editor.fontWeight": "500",
"editor.renderWhitespace": "all",
"editor.multiCursorModifier": "ctrlCmd",
"editor.wordWrap": "bounded",
"editor.wordWrapColumn": 118,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnSaveTimeout": 5000,
"editor.formatOnType": true,
"editor.renderLineHighlight": "none",
"editor.minimap.enabled": false,
"editor.glyphMargin": false,
"editor.renderIndentGuides": true,
"editor.selectionHighlight": false,
"editor.find.globalFindClipboard": true,
"editor.renderControlCharacters": true,
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.rulers": [
80,
118
],
"editor.scrollBeyondLastLine": false,
"editor.showUnused": false,
"editor.tabSize": 2,
"editor.tabCompletion": "on",
"workbench.editor.tabCloseButton": "left",
"workbench.iconTheme": "macos-classic-icons",
"workbench.startupEditor": "none",
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.closeOnFileDelete": false,
"workbench.editor.revealIfOpen": true,
"workbench.editor.tabSizing": "shrink",
"workbench.fontAliasing": "auto",
"window.titleBarStyle": "native",
"window.nativeTabs": true,
"window.restoreWindows": "all",
"window.zoomLevel": 0,
"files.autoSave": "onFocusChange",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"search.globalFindClipboard": false,
"search.smartCase": true,
"debug.inlineValues": true,
"breadcrumbs.enabled": true,
"git.promptToSaveFilesBeforeCommit": "always",
"ruby.useLanguageServer": true,
"ruby.lint": {
"rubocop": true
},
"ruby.format": "rubocop",
"javascript.format.enable": false,
"spellright.language": [
"en_GB",
"en_US"
],
"spellright.groupDictionaries": false,
"spellright.addToSystemDictionary": true,
"search.runInExtensionHost": true,
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext",
"git-commit"
],
"git.enableCommitSigning": true,
"git.fetchOnPull": true,
"git.openDiffOnClick": false,
"gitlens.blame.ignoreWhitespace": true,
"window.autoDetectColorScheme": true,
"workbench.preferredLightColorTheme": "macOS Classic",
"workbench.preferredDarkColorTheme": "Monokai Dimmed",
"workbench.colorTheme": "macOS Classic"
}