Last active
September 5, 2024 15:57
-
-
Save emhat098/85dadae61f51abc34f5da06b4741f416 to your computer and use it in GitHub Desktop.
VSCode transparent with apc extension
This file contains 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
{ | |
"symbols.hidesExplorerArrows": true, | |
"workbench.activityBar.location": "bottom", | |
"workbench.colorTheme": "Catppuccin Macchiato", | |
"workbench.iconTheme": "symbols", | |
"workbench.productIconTheme": "macos-modern", | |
"window.titleBarStyle": "native", | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.cursorStyle": "line-thin", | |
"editor.cursorWidth": 2, | |
"editor.cursorBlinking": "expand", | |
"editor.autoIndent": "brackets", | |
"editor.smoothScrolling": true, | |
"editor.autoClosingBrackets": "beforeWhitespace", | |
"window.customTitleBarVisibility": "never", | |
"window.nativeTabs": true, | |
"breadcrumbs.enabled": false, | |
"workbench.colorCustomizations": { | |
"editorGroupHeader.tabsBackground": "#00000000", | |
"sideBar.background": "#00000000", | |
"sideBarSectionHeader.background": "#00000000", | |
"editor.background": "#00000000", | |
"peekViewEditor.background": "#00000000", | |
"peekViewEditorGutter.background": "#00000000", | |
"peekViewTitle.background": "#00000000", | |
"peekViewResult.background": "#00000000", | |
"tab.activeBackground": "#00000000", | |
"tab.inactiveBackground": "#00000000", | |
"statusBar.background": "#00000000", | |
"statusBar.debuggingBackground": "#00000000", | |
"statusBar.noFolderBackground": "#00000000", | |
"statusBarItem.activeBackground": "#00000000", | |
"panel.background": "#00000000", | |
"activityBar.background": "#00000000", | |
"editorGutter.background": "#00000000", | |
"breadcrumb.background": "#00000000", | |
"tab.activeBorder": "#00000000", | |
"tab.activeBorderTop": "#fff", | |
"tab.border": "#00000000", | |
"scrollbarSlider.background": "#00000000", | |
"scrollbarSlider.activeBackground": "#00000000", | |
"editorStickyScroll.background": "#00000000", | |
"panelStickyScroll.background": "#00000000" | |
}, | |
"editor.fontSize": 13, | |
"editor.fontLigatures": true, | |
"editor.fontVariations": true, | |
"editor.showDeprecated": true, | |
"editor.formatOnSave": true, | |
"editor.renderWhitespace": "all", | |
"editor.mouseWheelZoom": true, | |
"editor.minimap.autohide": true, | |
"editor.tabSize": 4, | |
"terminal.integrated.fontSize": 11, | |
"editor.fontFamily": "'Google Sans Mono', 'Roboto Mono', 'Droid Sans Mono', 'monospace', monospace", | |
"editor.minimap.showSlider": "always", | |
"window.zoomLevel": 1, | |
"workbench.layoutControl.enabled": false, | |
"window.commandCenter": false, | |
"editor.stickyScroll.enabled": false, | |
"workbench.editor.titleScrollbarSizing": "default", | |
"workbench.editor.scrollToSwitchTabs": false, | |
"workbench.editor.showIcons": false, | |
"workbench.editor.showTabs": "multiple", | |
"workbench.statusBar.visible": true, | |
"workbench.startupEditor": "none", | |
"editor.scrollbar.verticalScrollbarSize": 0, | |
"editor.lineNumbers": "on", | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 500, | |
"editor.lineDecorationsWidth": 0, | |
"editor.colorDecorators": true, | |
"editor.glyphMargin": false, | |
"editor.folding": true, | |
"apc.statusBar": { | |
"fontSize": 11, | |
"height": 13, | |
"position": "editor-bottom" | |
}, | |
"apc.sidebar.titlebar": { | |
"fontSize": 11 | |
}, | |
"apc.header": { | |
"compact": 22 | |
}, | |
"apc.activityBar": { | |
"itemSize": 10 | |
}, | |
"apc.menubar.compact": false, | |
"apc.electron": { | |
"backgroundColor": "rgba(0, 0, 0, 0.98)", | |
"frame": false, | |
"transparent": true, | |
"titleBarStyle": "hiddenInset", | |
"vibrancy": "under-window", | |
"opacity": 0.98, | |
"visualEffectState": "active" | |
}, | |
"apc.listRow": { | |
"height": 24 | |
}, | |
"editor.scrollbar.horizontalScrollbarSize": 2, | |
"editor.scrollbar.vertical": "hidden", | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.minimap.renderCharacters": false, | |
"editor.minimap.size": "fit", | |
"editor.minimap.enabled": false, | |
"workbench.editor.enablePreview": false, | |
"update.mode": "manual", | |
"window.density.editorTabHeight": "compact" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment