Skip to content

Instantly share code, notes, and snippets.

@d4hines
Last active April 1, 2021 19:36
Show Gist options
  • Save d4hines/dfc6661d9e555822abf4a2708f55f5e3 to your computer and use it in GitHub Desktop.
Save d4hines/dfc6661d9e555822abf4a2708f55f5e3 to your computer and use it in GitHub Desktop.
My VS Code Settings
{
// I use git-bash inside Windows for less cognitive dissonance since I
// mostly use WSL.
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shell.linux": "/bin/bash",
// the code spellcheck extension is a must have: https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker
"cSpell.userWords": [
"tezos"
],
"files.autoSave": "afterDelay",
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"editor.renderWhitespace": "all",
"diffEditor.ignoreTrimWhitespace": false,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.minimap.enabled": false,
"workbench.startupEditor": "welcomePage",
"editor.formatOnSave": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.wordWrap": "off",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment