-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
vscode-settings.json
118 lines (118 loc) · 4.18 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"editor.fontFamily": "'SF Mono', Monaco, Consolas, monospace",
"editor.tabSize": 2,
"editor.fontWeight": 500,
"window.titleBarStyle": "native",
"window.nativeTabs": true,
"workbench.editor.showIcons": false,
"problems.decorations.enabled": false,
"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.glyphMargin": false,
"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.tabCompletion": "on",
"workbench.editor.tabCloseButton": "left",
"workbench.iconTheme": "macos-modern-big-sur-icon-theme",
"workbench.startupEditor": "none",
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.closeOnFileDelete": false,
"workbench.editor.revealIfOpen": true,
"workbench.editor.tabSizing": "shrink",
"workbench.fontAliasing": "auto",
"window.restoreWindows": "all",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"search.globalFindClipboard": false,
"search.smartCase": true,
"debug.inlineValues": "on",
"breadcrumbs.enabled": true,
"git.promptToSaveFilesBeforeCommit": "always",
"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,
"window.autoDetectColorScheme": true,
"workbench.preferredLightColorTheme": "MacOS Modern Light - Xcode Default",
"workbench.preferredDarkColorTheme": "MacOS Modern Dark - Xcode Default",
"workbench.colorTheme": "MacOS Modern Light - Xcode Default",
"workbench.productIconTheme": "macos-modern",
"git.enableSmartCommit": true,
"diffEditor.renderSideBySide": false,
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "zsh"
}
},
"terminal.integrated.profiles.osx": {
"zsh": {
"path": "zsh"
}
},
"security.workspace.trust.untrustedFiles": "open",
"editor.inlineSuggest.enabled": true,
"editor.bracketPairColorization.enabled": true,
"terminal.integrated.scrollback": 8000,
"terminal.integrated.persistentSessionScrollback": 1000,
"files.autoSave": "afterDelay",
"editor.guides.indentation": true,
"editor.minimap.enabled": false,
"debug.allowBreakpointsEverywhere": true,
"debug.showBreakpointsInOverviewRuler": true,
"workbench.editor.enablePreview": false,
"githubPullRequests.pullBranch": "never",
"github.copilot.enable": {
"*": true,
"markdown": true
},
"git.openRepositoryInParentFolders": "always",
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"go.toolsManagement.autoUpdate": true,
"terminal.integrated.tabs.enabled": false,
"terminal.integrated.enableMultiLinePasteWarning": "never",
"workbench.editor.tabActionLocation": "left",
"accessibility.signals.terminalBell": {
"sound": "on"
},
"terminal.integrated.enableVisualBell": true,
"github.copilot.editor.enableAutoCompletions": true,
"rubyLsp.formatter": "rubocop"
}