Skip to content

Instantly share code, notes, and snippets.

@duncanmcdougall
Last active September 28, 2019 20:01
Show Gist options
  • Save duncanmcdougall/f6b953c7e0089efc31c9f78e031440f4 to your computer and use it in GitHub Desktop.
Save duncanmcdougall/f6b953c7e0089efc31c9f78e031440f4 to your computer and use it in GitHub Desktop.
VSCode Personal Settings
{
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"breadcrumbs.enabled": true,
"editor.fontFamily": "Fira Code, Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.minimap.enabled": false,
"eslint.alwaysShowStatus": true,
"eslint.autoFixOnSave": true,
"files.exclude": {
"**/.git": false,
"**/node_modules": true
},
"git.autofetch": true,
"git.confirmSync": false,
"git.ignoreMissingGitWarning": true,
"terminal.integrated.fontFamily": "\"Fira Mono for Powerline\", monospace",
"terminal.integrated.fontSize": 12,
"terminal.integrated.rendererType": "dom",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"typescript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 0,
"workbench.colorTheme": "One Dark Pro Vivid",
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
"editor.maxTokenizationLineLength": 40000,
"editor.mouseWheelZoom": true,
"javascript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment