Skip to content

Instantly share code, notes, and snippets.

@brandonsueur
Created March 14, 2019 20:12
Show Gist options
  • Save brandonsueur/ac3416780b9ea4dc7f3e2a187455849c to your computer and use it in GitHub Desktop.
Save brandonsueur/ac3416780b9ea4dc7f3e2a187455849c to your computer and use it in GitHub Desktop.
VSCode config
{
// editor
"editor.fontFamily": "Operator Mono, Fira Code, Dank Mono, 'Courier New', Consolas, monospace",
"editor.fontWeight": "400",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 29,
"editor.minimap.enabled": false,
"editor.formatOnSave": false,
"editor.renderControlCharacters": false,
"editor.folding": false,
"editor.hideCursorInOverviewRuler": true,
"editor.cursorWidth": 1,
"editor.matchBrackets": false,
"editor.overviewRulerBorder": false,
"editor.renderLineHighlight": "none",
"editor.tabSize": 2,
"editor.rulers": [80, 120],
"editor.renderIndentGuides": false,
//"editor.renderWhitespace": "all",
"editor.formatOnSaveTimeout": 250,
// window
"window.zoomLevel": 0,
"window.nativeFullScreen": false,
"window.titleBarStyle": "native",
"window.title": "${activeEditorLong} ${separator} ${activeEditorShort}",
// workbench
"workbench.editor.showIcons": false,
"workbench.activityBar.visible": false,
"workbench.settings.editor": "json",
"workbench.colorTheme": "Dark Sea",
"workbench.startupEditor": "none",
"workbench.statusBar.visible": true,
"workbench.iconTheme": "city-lights-icons-vsc-light",
// search
"terminal.external.osxExec": "Hyper.app",
"search.exclude": { "**/node_modules": true },
"[javascript]": { "editor.formatOnSave": true },
"files.associations": {
"*.js": "javascriptreact"
},
"explorer.openEditors.visible": 0,
// plugins
"fontshortcuts.defaultFontSize": 15,
"fontshortcuts.defaultTerminalFontSize": 15,
"workbench.editor.showTabs": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment