Skip to content

Instantly share code, notes, and snippets.

@brcmesquita
Last active August 23, 2020 21:09
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 brcmesquita/6f56b2a867f33bf6386058aa41f0e312 to your computer and use it in GitHub Desktop.
Save brcmesquita/6f56b2a867f33bf6386058aa41f0e312 to your computer and use it in GitHub Desktop.
Microsoft Visual Studio Code - Settings
{
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"color-highlight.markerType": "dot-before",
"diffEditor.renderSideBySide": true,
"editor.cursorBlinking": "phase",
"editor.fontFamily": "'IBM Plex Mono', 'Fira Code Retina', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.lineHeight": 25,
"editor.minimap.enabled": false,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "selection",
"editor.rulers": [80, 120],
"editor.tabSize": 2,
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"php": "html"
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"php": "html"
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.sortOrder": "type",
"git.autofetch": true,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"prettier.semi": true,
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"window.title": "${activeEditorMedium}${separator}${rootName}",
"workbench.colorTheme": "Origamid Next",
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.visible": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment