Last active
September 28, 2019 20:01
-
-
Save duncanmcdougall/f6b953c7e0089efc31c9f78e031440f4 to your computer and use it in GitHub Desktop.
VSCode Personal Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"[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