Skip to content

Instantly share code, notes, and snippets.

@wilburpowery
Created October 9, 2018 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wilburpowery/4117786c60f57335b4b7206ad28aafd8 to your computer and use it in GitHub Desktop.
Save wilburpowery/4117786c60f57335b4b7206ad28aafd8 to your computer and use it in GitHub Desktop.
{
"editor.fontSize": 16,
"editor.fontFamily": "Roboto Mono, Menlo, Monaco, 'Courier New', monospace",
"workbench.colorTheme": "GitHub Plus",
"workbench.fontAliasing": "antialiased",
"editor.lineHeight": 32,
"editor.wordWrap": "on",
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "eq-material-theme-icons",
"window.zoomLevel": 0,
"search.useIgnoreFiles": false,
"explorer.autoReveal": false,
"editor.tabCompletion": true,
"emmet.triggerExpansionOnTab": true,
"editor.minimap.enabled": false, // removes minimap
"editor.renderWhitespace": "none", // removes whitespace chars
"editor.renderIndentGuides": false, // removes indent guides
"editor.renderLineHighlight": "none", // removes line highlight
"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.folding": false, // removes the folding feature
"editor.occurrencesHighlight": false, // removes the highlight of matching brackets (I use Subtle Match Brackets extension for this)
"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, you can see the opened files with ⌘ + ⌥ + Tab
"workbench.activityBar.visible": false, // removes the activity bar (the 4 icons at the left of the screen), so now you will have to open the explorer, git, debugger and extension with shortcuts or through the Command Palette
"workbench.editor.showIcons": true, // removes icon from opened files in tabs
"workbench.statusBar.visible": false, // removes the status bar
"indenticator.color.dark": "rgba(255,255,255,.1)", // adds a subtle indent guide (needs Indenticator extension)
"editor.matchBrackets": false,
"editor.lineNumbers": "off",
"workbench.editor.showTabs": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment