Skip to content

Instantly share code, notes, and snippets.

@gaearon
Last active May 12, 2019 09:59
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaearon/8a56d18558235282e9540fcaccd422ad to your computer and use it in GitHub Desktop.
Save gaearon/8a56d18558235282e9540fcaccd422ad to your computer and use it in GitHub Desktop.
{
"editor.fontFamily": "Consolas",
"editor.fontSize": 18,
"editor.lineHeight": 26,
"editor.minimap.enabled": false,
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "none",
"javascript.validate.enable": false,
// "workbench.colorTheme": (find something that looks like Oceanic Next and put it here)
"window.zoomLevel": -1,
"workbench.statusBar.visible": false,
"editor.lineNumbers": "off",
"workbench.editor.showIcons": false,
"workbench.iconTheme": null,
"editor.matchBrackets": false,
"workbench.activityBar.visible": false,
"explorer.openEditors.visible": 0,
"flow.enabled": false,
"editor.parameterHints": false,
"editor.folding": false,
"editor.hover": false,
"editor.scrollbar.horizontal": "hidden",
"editor.occurrencesHighlight": false,
"editor.suggestOnTriggerCharacters": false,
"editor.quickSuggestions": {
"comments": false,
"strings": false
},
"editor.overviewRulerBorder": false,
"workbench.colorCustomizations": {
"panel.background": "#232830",
"panel.border": "#232830",
"sideBar.background": "#232830",
"sideBar.border": "#232830",
"scrollbar.shadow": "#282c35",
"scrollbarSlider.background": "#282c35",
"widget.shadow": "#282c35",
"titleBar.activeBackground": "#1c1f26",
"titleBar.inactiveBackground": "#1c1f26",
"tab.inactiveBackground": "#1c1f26",
"tab.activeBackground": "#2b303b",
"sideBarSectionHeader.foreground": "#c0c5cd",
"tab.border": "#1c1f26",
"editorGroupHeader.tabsBackground": "#1c1f26",
"editorGroupHeader.tabsBorder": "#282c35",
"editor.background": "#282c35",
"editorGutter.background": "#282c35",
"sideBar.foreground": "#64727f",
"list.inactiveSelectionBackground": "#343d46",
"list.inactiveSelectionForeground": "#dfe1e8",
"list.activeSelectionBackground": "#343d46",
"list.activeSelectionForeground": "#dfe1e8",
"list.focusBackground": "#343d46",
"list.focusForeground": "#dfe1e8",
"list.hoverBackground": "#232830",
"list.hoverForeground": "#c0c5cd",
"gitDecoration.ignoredResourceForeground": "#64727f",
"editorCursor.foreground": "#b6bcc4",
},
"editor.hideCursorInOverviewRuler": true,
}
@ahmadawais
Copy link

ahmadawais commented Apr 29, 2018

@gaearon I'd recommend that you remove "window.zoomLevel": -1, and make the following font setup.

// Fonts Setup.
	"editor.fontFamily": "Operator Mono, Fira Code, Menlo, Monaco, 'Courier New', monospace",
	"terminal.integrated.fontFamily": "'Operator Mono', 'Inconsolata for Powerline', monospace",
	"editor.fontLigatures": true,
	"editor.fontSize": 17,
	"editor.lineHeight": 24.65,
	"editor.fontWeight": "400",
	"editor.letterSpacing": 0.5,
	"workbench.fontAliasing": "auto",

Obviously chose your own font there. Make sure line-height is 1.45 times the font size.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment