Skip to content

Instantly share code, notes, and snippets.

@dahoba
Created June 13, 2017 02:29
Show Gist options
  • Save dahoba/dfd5f87eea0cd35465d06587d2800329 to your computer and use it in GitHub Desktop.
Save dahoba/dfd5f87eea0cd35465d06587d2800329 to your computer and use it in GitHub Desktop.
VS Code user settings on macOS
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Inconsolata",
"editor.fontWeight": "normal",
"editor.fontSize": 14,
"editor.lineHeight": 0,
"editor.insertSpaces": true,
"editor.rulers": [
120,
200
],
"editor.mouseWheelZoom": false,
"workbench.editor.enablePreview": true,
"typescript.check.tscVersion": false,
"window.zoomLevel": 0,
"editor.renderLineHighlight": "gutter",
"workbench.iconTheme": "vs-seti",
"editor.cursorStyle": "line",
"editor.tabSize": 4,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"workbench.colorTheme": "Tomorrow Night Eighties",
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment