From 75a25ea831b4d2a216931d3f00df32057d80c58a56ca890a40199b706fb156d6 Mon Sep 17 00:00:00 2001 From: titor Date: Sun, 15 Dec 2024 20:29:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20mac-settings.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mac 下的全局默认设置项目。 包含了自定义UI --- mac-settings.json | 101 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 mac-settings.json diff --git a/mac-settings.json b/mac-settings.json new file mode 100644 index 0000000..a79951c --- /dev/null +++ b/mac-settings.json @@ -0,0 +1,101 @@ +{ + "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", +} \ No newline at end of file