Skip to content

Instantly share code, notes, and snippets.

@fipo
Last active February 7, 2020 07:21
Show Gist options
  • Save fipo/b40e0cae41d7ecee8c623b02c9e5090a to your computer and use it in GitHub Desktop.
Save fipo/b40e0cae41d7ecee8c623b02c9e5090a to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.startupEditor": "none",
"workbench.colorTheme": "Night Owl (No Italics)",
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.fontFamily": "'Source Code Pro', monospace",
"editor.scrollBeyondLastLine": false,
"editor.minimap.enabled": false,
"editor.rulers": [ 120 ],
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"terminal.integrated.fontSize": 14,
"window.title": "${activeEditorMedium}${separator}${rootName}",
"window.zoomLevel": 0,
"window.titleBarStyle": "custom",
"breadcrumbs.enabled": true,
"todo-tree.highlights.enabled": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"eslint.alwaysShowStatus": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"todo-tree.general.tags": [ "TODO", "FIXME" ],
"gitlens.mode.active": "zen"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment