Created
June 4, 2024 23:15
-
-
Save peterldowns/86ed35be776386904dff869ca1a22f6c to your computer and use it in GitHub Desktop.
Beautiful vscode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.titleBarStyle": "native", | |
"apc.menubar.compact": true, | |
"workbench.colorCustomizations": { | |
"focusBorder": "#ff000000", | |
"sideBar.background": "#00000000", | |
"activityBar.background": "#00000000", | |
"sideBarSectionHeader.background": "#00000000", | |
"statusBar.background": "#00000000", | |
"list.hoverBackground": "#00000000" | |
}, | |
"apc.electron": { | |
"opacity": 1.0, | |
"transparent": true, | |
"backgroundColor": "rgba(0,0,0,0)", | |
"backgroundMaterial": "auto", | |
"frame": false, | |
"titleBarStyle": "hiddenInset", | |
"vibrancy": "sidebar", | |
"visualEffectState": "followWindow" | |
}, | |
"apc.stylesheet": { | |
// visit https://github.dev/github/dev and inspect-element to find these classes | |
// "#workbench\\.parts\\.sidebar > .composite.title": "opacity: 0; pointer-events: none", | |
// ".title.tabs.title-border-bottom .tabs-container": "cursor: default; -webkit-app-region: no-drag;", | |
// ".editor-actions": "display: none;", | |
// ".monaco-list-rows": "background-color: transparent !important;", | |
".nosidebar .tabs": "padding-left: 80px;", | |
".scrollbar": " width: 10px !important", | |
".scrollbar .slider": "opacity:0.8; border-radius: 10px;", | |
"#workbench\\.parts\\.sidebar .title-label": "opacity: 0; pointer-events: none", | |
"#workbench\\.parts\\.sidebar .title .actions": "visibility: hidden !important; pointer-events: none", | |
"#workbench\\.parts\\.activitybar .menubar.overflow-menu-only": "display:none", | |
"#workbench\\.parts\\.sidebar .monaco-list-rows": "background-color: transparent !important;", | |
"#workbench\\.parts\\.sidebar .monaco-list-rows .monaco-list-row.selected": "text-decoration: underline;", | |
".vs-light #workbench\\.parts\\.sidebar .monaco-list-rows .monaco-list-row": "background-color: #F8F8F700 !important;", | |
".vs-light #workbench\\.parts\\.sidebar .monaco-list-rows .monaco-list-row.selected": "background-color: #F8F8F733 !important;", | |
".vs-light #workbench\\.parts\\.sidebar .monaco-list-rows .monaco-list-row:hover": "background-color: #F8F8F733 !important;", | |
".vs-dark #workbench\\.parts\\.sidebar .monaco-list-rows .monaco-list-row": "background-color: #36333300 !important;", | |
".vs-dark #workbench\\.parts\\.sidebar .monaco-list-rows .monaco-list-row.selected": "background-color: #36333388 !important;", | |
".vs-dark #workbench\\.parts\\.sidebar .monaco-list-rows .monaco-list-row:hover": "background-color: #36333388 !important;", | |
}, | |
"catppuccin.syncWithIconPack": true, | |
"catppuccin.workbenchMode": "minimal", | |
"catppuccin.accentColor": "lavender", | |
"catppuccin.bracketMode": "neovim", | |
"catppuccin.customUIColors": { | |
"all": { | |
"sideBar.background": "#00000000", | |
"activityBar.background": "#00000000", | |
"sideBarSectionHeader.background": "#00000000", | |
"statusBar.background": "#00000000", | |
"list.hoverBackground": "#00000000" | |
}, | |
}, | |
"catppuccin.colorOverrides": { | |
"latte": { | |
"yellow": "#c5ae00", | |
}, | |
}, | |
"editor.fontFamily": "Iosevka Term, JetBrainsMono Nerd Font, FiraCode Nerd Font, JetBrains Mono, RobotoMono Nerd Font, Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
"editor.minimap.enabled": false, | |
"explorer.expandSingleFolderWorkspaces": false, | |
"explorer.fileNesting.enabled": true, | |
"window.customTitleBarVisibility": "never", | |
"window.nativeFullScreen": false, | |
"window.systemColorTheme": "auto", | |
"workbench.colorTheme": "Catppuccin Macchiato", | |
"workbench.iconTheme": "catppuccin-macchiato", | |
"window.autoDetectColorScheme": true, | |
"workbench.preferredDarkColorTheme": "Catppuccin Macchiato", | |
"workbench.preferredHighContrastColorTheme": "Catppuccin Mocha", | |
"workbench.preferredHighContrastLightColorTheme": "Catppuccin Frappé", | |
"workbench.preferredLightColorTheme": "Catppuccin Latte", | |
"workbench.tree.enableStickyScroll": false, | |
"workbench.activityBar.location": "hidden", | |
} |
The colors and icons are from Catppuccin:
Thanks a lot again!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'll need the APC extension to get the full minimal look:
https://github.com/drcika/apc-extension/