Skip to content

Instantly share code, notes, and snippets.

@ddanger
Last active July 8, 2019 21:40
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 ddanger/b974d724b3f65834bc0d5efaf75170cd to your computer and use it in GitHub Desktop.
Save ddanger/b974d724b3f65834bc0d5efaf75170cd to your computer and use it in GitHub Desktop.
My VS Code User Settings
{
"breadcrumbs.enabled": true,
"diffEditor.renderSideBySide": true,
"editor.insertSpaces": true,
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.formatOnType": false,
"editor.minimap.enabled": false,
"editor.minimap.maxColumn": 80,
"editor.minimap.renderCharacters": false,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "boundary",
"editor.rulers": [
80,
120
],
"editor.smoothScrolling": true,
"editor.tabCompletion": "on",
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"files.associations": {
"*.mg": "php",
"*.mgi": "php"
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/typings": true,
".idea": true,
".vscode": true,
"tmp": true
},
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/bower_components": true,
"**/jspm_packages": true,
"**/node_modules": true,
"**/webasset/assets/components/specs": true
},
"git.enableSmartCommit": true,
"gitlens.blame.highlight.locations": [
"line",
"overview",
"gutter"
],
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.recentChanges.highlight.locations": [
"gutter",
"line",
"overview"
],
"html.format.wrapAttributes": "force-aligned",
"phpcbf.autoConfigSearch": false,
"phpcbf.executablePath": "/Users/ddangerfield/bin/phpcbf",
"phpcbf.standard": ".phpcs.ruleset.xml",
"phpcs.autoConfigSearch": false,
"phpcs.executablePath": "/Users/ddangerfield/bin/phpcs",
"phpcs.standard": ".phpcs.ruleset.xml",
"prettier.arrowParens": "always",
"prettier.requireConfig": true,
"prettier.singleQuote": true,
"prettier.tabWidth": 4,
"prettier.trailingComma": "es5",
"search.exclude": {
"**/bower_components": true,
"**/coverage": true,
"**/dist": true,
"**/documentation": true,
"**/jspm_packages": true,
"**/node_modules": true,
"**/out-tsc": true,
"**/target": true,
".git": true
},
"search.useIgnoreFiles": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"terminal.integrated.lineHeight": 1.2,
"window.zoomLevel": 1,
"workbench.editor.enablePreviewFromQuickOpen": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment