Created
July 14, 2020 20:44
-
-
Save iddan/f36d63ddf311662b4e3cf606badd23a2 to your computer and use it in GitHub Desktop.
My VSCode settings.json
This file contains hidden or 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
{ | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.iconTheme": null, | |
"window.zoomLevel": 0, | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Monaco, 'Courier New', monospace", | |
"terminal.integrated.shell.osx": "/usr/local/bin/bash", | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "Monaco", | |
"git.confirmSync": false, | |
"git.autofetch": true, | |
"go.formatTool": "goimports", | |
"go.useLanguageServer": true, | |
"editor.scrollBeyondLastLine": false, | |
"cSpell.userWords": ["deserialization", "deserialize", "deserializer"], | |
"files.associations": { | |
"*.jsonld": "json" | |
}, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"debug.toolBarLocation": "docked", | |
"editor.rulers": [80], | |
"debug.console.fontSize": 14, | |
"terminal.integrated.cursorBlinking": true, | |
"cSpell.enableFiletypes": [ | |
"dockerfile", | |
"ndjson", | |
"ruby", | |
"shellscript", | |
"sql", | |
"swift", | |
"toml", | |
"vue", | |
"xml" | |
], | |
"editor.formatOnSave": true, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[yaml]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment