Skip to content

Instantly share code, notes, and snippets.

@vinayakkulkarni
Created August 13, 2018 11:22
Show Gist options
  • Save vinayakkulkarni/d8fb5fb4f446b3ba61b62d06d06e39c9 to your computer and use it in GitHub Desktop.
Save vinayakkulkarni/d8fb5fb4f446b3ba61b62d06d06e39c9 to your computer and use it in GitHub Desktop.
VSCode on macOS User settings - 13 Aug 2018
{
"editor.tabSize": 2,
"editor.fontSize": 15,
"editor.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace",
"editor.lineHeight": 26,
"editor.fontLigatures": true,
"editor.tabCompletion": true,
"editor.formatOnSave": true,
"explorer.decorations.badges": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"editor.renderWhitespace": "none",
"workbench.fontAliasing": "antialiased",
"workbench.colorTheme": "Material Theme Darker",
"workbench.activityBar.visible": false,
"workbench.sideBar.location": "left",
"zenMode.fullScreen": false,
"zenMode.hideTabs": false,
"editor.minimap.enabled": false,
"eslint.validate": [
"vue"
],
"emmet.includeLanguages": {
"vue-html": "html",
},
"explorer.confirmDelete": false,
"workbench.iconTheme": "eq-material-theme-icons",
"window.zoomLevel": 0,
"prettier.eslintIntegration": true,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"php.suggest.basic": true,
"php.executablePath": "/usr/bin/php",
"git.enableSmartCommit": true,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#00BCD4",
"list.activeSelectionForeground": "#00BCD4",
"list.inactiveSelectionForeground": "#00BCD4",
"list.highlightForeground": "#00BCD4",
"scrollbarSlider.activeBackground": "#00BCD450",
"editorSuggestWidget.highlightForeground": "#00BCD4",
"textLink.foreground": "#00BCD4",
"progressBar.background": "#00BCD4",
"pickerGroup.foreground": "#00BCD4",
"tab.activeBorder": "#00BCD4",
"notificationLink.foreground": "#00BCD4"
},
"explorer.confirmDragAndDrop": false,
"files.associations": {
".php_cs": "php"
},
"eslint.alwaysShowStatus": true,
"eslint.autoFixOnSave": true,
"editor.quickSuggestions": {
"strings": true
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment