vscode/mac-settings.json
titor 75a25ea831 添加 mac-settings.json
Mac 下的全局默认设置项目。
包含了自定义UI
2024-12-15 20:29:02 +08:00

101 lines
3.5 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"editor.fontSize": 14,
"editor.tabSize": 2,
"codingcopilot.enableAutoCompletions": true,
"files.autoSave": "afterDelay",
"editor.fontFamily": "'Cascadia Code PL', 'JetBrains Mono',Menlo, Monaco, 'Courier New', monospace",
"editor.minimap.size": "fill",
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"workbench.iconTheme": "vscode-icons",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"[gotmpl]": {
},
"files.associations": {
"*.tmpl": "html",
"*.riot": "htmltag",
"*.toml": "ini"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"git.openRepositoryInParentFolders": "never",
"explorer.confirmPasteNative": false,
"window.titleBarStyle": "custom",
"vscode_vibrancy.enableAutoTheme": true,
"vscode_vibrancy.opacity": 0,
"workbench.settings.applyToAllProfiles": [
"workbench.colorCustomizations"
],
"editor.minimap.autohide": true,
"update.mode": "none",
// 自定义透明
"workbench.colorCustomizations": {
"terminal.background": "#00000000",
"minimap.background": "#00000000",
"scrollbar.shadow": "#00000000",
"scrollbarSlider.activeBackground": "#1f43d2cf",
"scrollbarSlider.hoverBackground": "#1d41d192",
"scrollbarSlider.background": "#1f43d208",
"editorStickyScroll.background": "#1919195c",
"editor.background": "#0000000d",
"editor.lineHighlightBackground": "#0b0b0b37",
// 活动栏
"activityBarTop.activeBorder": "#006affe7",
"activityBarTop.inactiveForeground": "#fdfdfd81",
"activityBarBadge.background": "#006affe7",
"activityBarBadge.foreground": "#ffffff",
"activityBarTop.foreground": "#ffffff",
//
"sideBarActivityBarTop.border": "#18181800",
// 状态栏
"statusBarItem.remoteBackground":"#006affa3",
"statusBar.foreground": "#ffffff81",
// 终端
"terminal.foreground": "#f4f4f4c9",
"terminal.border": "#7373732b",
// 侧边栏
// "sideBar.background": "#17171713",
},
"[vue]": {
"editor.defaultFormatter": "Vue.volar"
},
"livePreview.customExternalBrowser": "Chrome",
"livePreview.portNumber": 5173,
"docker.containers.label": "ContainerName",
"docker.containers.groupBy": "ContainerName",
"docker.images.groupBy": "RepositoryName",
"marscode.chatLanguage": "cn",
"marscode.advanced": {
"sideBar": true,
"background": "red",
"logLevel": "info",
"logFile": false,
"outOfScopeProcess": false,
"debounceInterval": 125,
"proxyMode": "system",
"proxyUrl": ""
},
"git.confirmSync": false,
"git.enableSmartCommit": true,
"codingcopilot.modelDocumentLanguage": "中文",
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"vscode_vibrancy.theme": "Default Dark",
"terminal.integrated.tabs.enabled": false,
"git-graph.commitDetailsView.fileView.type": "File List",
"git-graph.commitDetailsView.location": "Docked to Bottom",
// 连字体
"editor.fontLigatures": true,
"debug.console.fontFamily": "Cascadia Code PL",
"debug.console.fontLigatures": true,
"editor.unicodeHighlight.nonBasicASCII": false,
"workbench.activityBar.location": "top",
}