Last active
September 14, 2020 12:31
-
-
Save siddharthkp/0684e3157a7b80c0253314da44e5e0aa to your computer and use it in GitHub Desktop.
vscode cleanup
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
{ | |
"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 | |
} |
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
/* 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