Skip to content

Instantly share code, notes, and snippets.

@eur2
Forked from kamilogorek/_screenshot.md
Created January 3, 2024 09:04
Show Gist options
  • Save eur2/eda985decd049f60b9baaea1bcaf63fc to your computer and use it in GitHub Desktop.
Save eur2/eda985decd049f60b9baaea1bcaf63fc to your computer and use it in GitHub Desktop.

Revisions

  1. @kamilogorek kamilogorek created this gist Jan 1, 2024.
    32 changes: 32 additions & 0 deletions clutter-free-vscode.jsonc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,32 @@
    // Required Plugin: https://marketplace.visualstudio.com/items?itemName=drcika.apc-extension

    // settings.json
    {
    // Remove left-side icons
    "workbench.activityBar.location": "hidden",
    // Remove bottom status bar
    "workbench.statusBar.visible": false,
    // Remove position indicator in the editor's scrollbar
    "editor.hideCursorInOverviewRuler": true,
    // Remove minimap
    "editor.minimap.enabled": false,
    // Move tabs to be in a single line with window controls
    "window.titleBarStyle": "native",
    "apc.electron": {
    "titleBarStyle": "hiddenInset",
    "trafficLightPosition": {
    "x": 11,
    "y": 10
    }
    },
    "apc.header": {
    "height": 36
    },
    // Remove unnecessary controls from primary bar and tabs list
    "apc.stylesheet": {
    ".title-label > h2": "display: none", // Remove primary side bar title
    ".title-actions": "display: none", // Remove primary side bar action icons
    ".editor-actions": "display: none", // Remove editor action icons
    ".nosidebar .inline-tabs-placeholder": "width: 75px" // Align tabs to not overlap window controls when primary bar is hidden
    }
    }