Skip to content

Instantly share code, notes, and snippets.

@siddharthkp
Last active September 14, 2020 12:31
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siddharthkp/0684e3157a7b80c0253314da44e5e0aa to your computer and use it in GitHub Desktop.
Save siddharthkp/0684e3157a7b80c0253314da44e5e0aa to your computer and use it in GitHub Desktop.
vscode cleanup
{
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false, // removes minimap
"editor.renderWhitespace": "none", // removes whitespace chars
"editor.renderIndentGuides": false, // removes indent guides
"editor.overviewRulerBorder": false, // removes border from overview ruler (located on the right, same position as the scrollbar)
"editor.hideCursorInOverviewRuler": true, // hides cursor mark in the overview ruler
"editor.lineNumbers": "off", // hide line numbers
"editor.renderLineHighlight": "none", // removes line highlight
"editor.matchBrackets": "never", // removes the highlight of matching brackets
"editor.glyphMargin": false, // removes the space used mainly for debugging indicators
"explorer.openEditors.visible": 0, // removes the open editors section at the top of the sidebar
"workbench.activityBar.visible": false, // removes the activity bar
"workbench.editor.showIcons": false, // removes icon from opened files in tabs
"workbench.editor.tabCloseButton": "off", // removes cross icon from tabs
"workbench.statusBar.visible": false, // removes the status bar
"workbench.colorCustomizations": {
"tab.activeBorder": "#0000" // removes border to highlight active tabs
},
"window.titleBarStyle": "custom",
"scm.diffDecorationsGutterVisibility": "hover",
// with https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css
"vscode_custom_css.imports": ["file:///Users/sid/code/vscode.css"],
"vscode_custom_css.policy": true
}
/* for https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css */
.editor-actions {
display: none !important;
}
[title='Open Changes'] {
display: none !important;
}
.window-title {
display: none;
}
.part.titlebar {
border-bottom-width: 0 !important;
}
.tab.close-button-off {
border-right-width: 0 !important;
}
.title-border-bottom {
--title-border-bottom-color: #151515 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment