-
-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathsettings.json
93 lines (93 loc) · 3.22 KB
/
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
{
"editor.fontSize": 16,
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'",
"debug.console.fontSize": 16,
"terminal.integrated.fontSize": 14,
"editor.fontFamily": "'Monaspace Xenon', 'Courier New', monospace",
"editor.tabSize": 2,
"editor.bracketPairColorization.enabled": true,
"editor.minimap.enabled": false,
// Wrap lines at 100 characters
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 100,
"html.format.wrapLineLength": 100,
// Prettier formatter: single quotes, 100 chars
"prettier.singleQuote": true,
"prettier.printWidth": 100,
// git
"git.confirmSync": false,
"git.autorefresh": false,
"diffEditor.renderSideBySide": false,
// Do not show files
"files.exclude": {
"**/package-lock.json": true
},
// F-off telemetry
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"telemetry.telemetryLevel": "off",
"update.mode": "none",
"extensions.autoUpdate": false,
"update.showReleaseNotes": false,
"extensions.autoCheckUpdates": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.enableExperiments": false,
"extensions.ignoreRecommendations": true,
"explorer.openEditors.visible": 10,
"explorer.confirmDelete": false,
"editor.renderWhitespace": "selection",
"editor.renderControlCharacters": false,
"window.openFilesInNewWindow": "default",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.startupEditor": "none",
"workbench.editor.languageDetection": false,
"workbench.preferredDarkColorTheme": "Monokai Pro (Filter Spectrum)",
"window.autoDetectColorScheme": true,
"editor.unicodeHighlight.nonBasicASCII": false,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"breadcrumbs.enabled": false,
"workbench.preferredLightColorTheme": "Iceberg Light",
"workbench.colorTheme": "Iceberg Light",
"editor.lineNumbers": "off",
"editor.folding": false,
"editor.glyphMargin": false,
"editor.guides.indentation": false,
"prettier.enable": false,
"editor.rulers": [],
"markdown.preview.fontSize": 18,
"files.trimTrailingWhitespace": true,
"git.openRepositoryInParentFolders": "always",
"workbench.editorAssociations": {
"*.epub": "default"
},
"typescript.inlayHints.parameterTypes.enabled": true,
"zig.zls.enabled": true,
"workbench.editor.empty.hint": "hidden",
"editor.inlayHints.enabled": "off",
"print.colourScheme": "A11 Y",
"markdown.preview.fontFamily": "SF Mono, SFMono, -apple-system, sans-serif",
"print.fontSize": "8pt",
"window.commandCenter": false,
"js/ts.implicitProjectConfig.checkJs": true,
"haskell.serverEnvironment": {
"PATH": "${HOME}/.ghcup/bin:$PATH"
},
"haskell.manageHLS": "GHCup",
"editor.maxTokenizationLineLength": 50000,
"workbench.settings.applyToAllProfiles": [
"editor.maxTokenizationLineLength"
],
"github.gitAuthentication": false,
"print.editorTitleMenuButton": false
}