forked from AI21Labs/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 61
/
vscode-settings.json
73 lines (73 loc) · 2.43 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
{
"editor.fontFamily": "'SF Mono', Menlo, Monaco, Consolas, monospace",
"editor.fontWeight": "500",
"editor.renderWhitespace": "boundary",
"editor.multiCursorModifier": "ctrlCmd",
"editor.wordWrap": "bounded",
"editor.wordWrapColumn": 118,
"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.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.colorTheme": "macOS Classic",
"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": true,
"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
},
"spellright.language": "en_GB",
"spellright.groupDictionaries": false,
"spellright.addToSystemDictionary": true,
"searchRipgrep.enable": true,
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext",
"git-commit"
],
"go.gocodeAutoBuild": true,
"go.useCodeSnippetsOnFunctionSuggestWithoutType": true,
}