forked from MikeMcQuaid/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvscode-settings.json
More file actions
52 lines (52 loc) · 1.64 KB
/
vscode-settings.json
File metadata and controls
52 lines (52 loc) · 1.64 KB
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
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 18,
"editor.fontFamily": "Source Code Pro",
"editor.minimap.enabled": false,
"workbench.colorTheme": "One Dark Pro",
"workbench.preferredDarkColorTheme": "One Dark Pro",
"breadcrumbs.enabled": false,
"editor.scrollBeyondLastLine": false,
"search.searchOnType": false,
"gitlens.hovers.annotations.details": false,
"gitlens.hovers.annotations.enabled": false,
"gitlens.currentLine.scrollable": false,
"gitlens.hovers.annotations.changes": false,
"gitlens.currentLine.enabled": false,
"window.newWindowDimensions": "inherit",
"[typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"editor.formatOnSave": true,
"[markdown]": {
"editor.formatOnSave": false
},
"eslint.format.enable": true,
"extensions.ignoreRecommendations": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"gitlens.advanced.messages": {
"suppressGitMissingWarning": true
},
"git.ignoreMissingGitWarning": true,
"launch": {
"configurations": [],
"compounds": []
},
"diffEditor.ignoreTrimWhitespace": false,
"editor.bracketPairColorization.enabled": false,
"prettier.requireConfig": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"window.autoDetectColorScheme": true,
"workbench.iconTheme": "atom-icons",
"workbench.preferredLightColorTheme": "One Dark Pro"
}