-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
.vscode-linux.settings.json
105 lines (105 loc) · 3.45 KB
/
.vscode-linux.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
{
"breadcrumbs.enabled": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "smart",
"editor.cursorBlinking": "solid",
"editor.fontFamily": "Iosevka",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.glyphMargin": false,
"editor.lineHeight": 20,
"editor.lineNumbers": "off",
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.parameterHints.enabled": false,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "none",
"editor.suggest.localityBonus": true,
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.tokenColorCustomizations": { "[Nord]": { "comments": "#616e88" } },
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.exclude": {
"**/.next": true,
"**/node_modules": true,
"**/yarn.lock": true
},
"files.useExperimentalFileWatcher": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"gitlens.advanced.telemetry.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.currentLine.enabled": false,
"jest.enableInlineErrorMessages": false,
"jest.restartJestOnSnapshotUpdate": true,
"markdown.preview.fontSize": 16,
"php.suggest.basic": false,
"search.exclude": {
"**/*.js.snap": true,
"**/*.ts.snap": true,
"**/yaml.lock": true
},
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontSize": 12,
"tslint.alwaysShowStatus": true,
"tslint.autoFixOnSave": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"vim.foldfix": true,
"vim.leader": ",",
"vim.normalModeKeyBindings": [
{
"before": ["j"],
"after": ["g", "j"]
},
{
"before": ["k"],
"after": ["g", "k"]
}
],
"window.zoomLevel": 0,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#00BCD4",
"list.activeSelectionForeground": "#00BCD4",
"list.inactiveSelectionForeground": "#00BCD4",
"list.highlightForeground": "#00BCD4",
"scrollbarSlider.activeBackground": "#00BCD450",
"editorSuggestWidget.highlightForeground": "#00BCD4",
"textLink.foreground": "#00BCD4",
"progressBar.background": "#00BCD4",
"pickerGroup.foreground": "#00BCD4",
"tab.activeBorder": "#00BCD4",
"notificationLink.foreground": "#00BCD4",
"editorWidget.resizeBorder": "#00BCD4",
"editorWidget.border": "#00BCD4",
"settings.modifiedItemIndicator": "#00BCD4",
"settings.headerForeground": "#00BCD4",
"panelTitle.activeBorder": "#00BCD4",
"breadcrumb.activeSelectionForeground": "#00BCD4",
"menu.selectionForeground": "#00BCD4",
"menubar.selectionForeground": "#00BCD4"
},
"workbench.editor.highlightModifiedTabs": true,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": false,
"workbench.colorTheme": "Material Theme Darker High Contrast",
"materialTheme.accent": "Cyan",
"workbench.iconTheme": "material-icon-theme",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.gotoLocation.multiple": "goto",
"references.preferredLocation": "view",
"emmet.showExpandedAbbreviation": "never"
}