forked from MikeMcQuaid/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvscode-settings.json
59 lines (59 loc) · 2.04 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
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "atom-icons",
"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,
// Controls whether bracket pair colorization is enabled or not. Use `workbench.colorCustomizations` to override the bracket highlight colors.
"editor.bracketPairColorization.enabled": false,
"prettier.requireConfig": true
// Controls whether each bracket type has its own independent color pool.
// "editor.bracketPairColorization.independentColorPoolPerBracketType": false,
// "workbench.colorCustomizations": {
// "[One Dark Pro]": {
// "editorBracketHighlight.foreground1": "#d19a66",
// "editorBracketHighlight.foreground2": "#c678dd",
// "editorBracketHighlight.foreground3": "#56b6c2"
// }
// }
}