-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
128 lines (128 loc) · 5.31 KB
/
settings.json
File metadata and controls
128 lines (128 loc) · 5.31 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
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
119
120
121
122
123
124
125
126
127
128
{
// +---------------------------------------------+
// | Color Name | RGB | Hex |
// |--------------+--------------------+---------|
// | Black | rgb(40, 44, 52) | #282c34 |
// |--------------+--------------------+---------|
// | White | rgb(171, 178, 191) | #abb2bf |
// |--------------+--------------------+---------|
// | Light Red | rgb(224, 108, 117) | #e06c75 |
// |--------------+--------------------+---------|
// | Dark Red | rgb(190, 80, 70) | #be5046 |
// |--------------+--------------------+---------|
// | Green | rgb(152, 195, 121) | #98c379 |
// |--------------+--------------------+---------|
// | Light Yellow | rgb(229, 192, 123) | #e5c07b |
// |--------------+--------------------+---------|
// | Dark Yellow | rgb(209, 154, 102) | #d19a66 |
// |--------------+--------------------+---------|
// | Blue | rgb(97, 175, 239) | #61afef |
// |--------------+--------------------+---------|
// | Magenta | rgb(198, 120, 221) | #c678dd |
// |--------------+--------------------+---------|
// | Cyan | rgb(86, 182, 194) | #56b6c2 |
// |--------------+--------------------+---------|
// | Gutter Grey | rgb(76, 82, 99) | #4b5263 |
// |--------------+--------------------+---------|
// | Comment Grey | rgb(92, 99, 112) | #5c6370 |
// +---------------------------------------------+
"accessibility.voice.speechLanguage": "zh-CN",
"chat.editor.fontSize": 16,
"diffEditor.experimental.showMoves": true,
"diffEditor.renderSideBySide": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "'Inconsolata Nerd Font Mono', 'LXGW WenKai Mono'",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.inlayHints.enabled": "onUnlessPressed",
"editor.inlineSuggest.showToolbar": "always",
"editor.inlineSuggest.syntaxHighlightingEnabled": true,
"editor.lineHeight": 1.3,
"editor.linkedEditing": true,
"editor.minimap.size": "fill",
"editor.minimap.showSlider": "always",
"editor.quickSuggestions": { "comments": "on" },
"editor.renderWhitespace": "boundary",
"editor.semanticHighlighting.enabled": true,
"editor.snippetSuggestions": "top",
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.tabCompletion": "on",
"emmet.includeLanguages": { "vue": "html" },
"files.associations": { "*.dtsi": "dts" },
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.simpleDialog.enable": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.pruneOnFetch": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"markdown.updateLinksOnFileMove.enabled": "always",
"markdown.validate.enabled": true,
"scm.repositories.explorer": true,
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorStyleInactive": "none",
"terminal.integrated.cursorWidth": 2,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.fontSize": 16,
"terminal.integrated.profiles.windows": {
"QMK_MSYS": { "path": "C:/QMK_MSYS/shell_connector.cmd" }
},
"terminal.integrated.scrollback": 100000,
"testing.coverageToolbarEnabled": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.autoDetectColorScheme": true,
"workbench.activityBar.location": "top",
"workbench.colorCustomizations": {
"editorBracketHighlight.foreground1": "#61afef",
"editorBracketHighlight.foreground2": "#d19a66",
"editorBracketHighlight.foreground3": "#e06c75",
"editorBracketHighlight.foreground4": "#56b6c2",
"editorBracketHighlight.foreground5": "#e5c07b",
"editorBracketHighlight.foreground6": "#98c379"
},
"workbench.editor.closeOnFileDelete": true,
"workbench.editor.splitInGroupLayout": "vertical",
"workbench.iconTheme": "material-icon-theme",
"workbench.preferredDarkColorTheme": "Atom One Dark",
"workbench.preferredLightColorTheme": "Atom One Light",
"[moonbit]": {
"editor.defaultFormatter": "moonbit.moonbit-lang"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"errorLens.enabled": true,
"github.copilot.chat.codesearch.enabled": true,
"github.copilot.chat.generateTests.codeLens": true,
"github.copilot.chat.languageContext.typescript.enabled": true,
"github.copilot.chat.localeOverride": "zh-CN",
"github.copilot.chat.newWorkspaceCreation.enabled": true,
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
"path-autocomplete.extensionOnImport": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.typeCheckingMode": "standard",
"python.analysis.useLibraryCodeForTypes": true,
"python.languageServer": "Pylance",
"python.testing.pytestArgs": ["-rx", "--cov", "--cov-report=xml:cov.xml"],
"python.testing.pytestEnabled": true,
"vscode-kanata.localKeysVariant": "deflocalkeys-winiov2",
"terminal.integrated.initialHint": false,
"redhat.telemetry.enabled": false
}