Skip to content

Instantly share code, notes, and snippets.

@sonukapoor
Last active May 17, 2019 18:18
Show Gist options
  • Select an option

  • Save sonukapoor/8639fdf43357972b2e339db76de0326a to your computer and use it in GitHub Desktop.

Select an option

Save sonukapoor/8639fdf43357972b2e339db76de0326a to your computer and use it in GitHub Desktop.
VSCode User Settings with iTerm
// user settings
{
"files.insertFinalNewline": true,
"editor.minimap.enabled": false,
"prettier.singleQuote": true,
"prettier.printWidth": 120,
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.fontSize": 14,
"window.zoomLevel": -1,
"window.menuBarVisibility": "default",
"workbench.statusBar.visible": true,
"window.titleBarStyle": "custom",
"gitlens.showWhatsNewAfterUpgrades": false,
"explorer.confirmDragAndDrop": false,
"html.autoClosingTags": false,
"terminal.integrated.rendererType": "dom",
"breadcrumbs.enabled": true,
"editor.accessibilitySupport": "off",
"npm.enableScriptExplorer": true
}
// Workspace settings
{
"editor.formatOnSave": true,
"html.format.wrapAttributes": "force-aligned",
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment