Skip to content

Instantly share code, notes, and snippets.

@vazgen6
Last active March 31, 2023 06:39
Show Gist options
  • Save vazgen6/31d03935ffb39e65d2a0b1aff7fc7d71 to your computer and use it in GitHub Desktop.
Save vazgen6/31d03935ffb39e65d2a0b1aff7fc7d71 to your computer and use it in GitHub Desktop.
My vscode settings.json
{
"editor.multiCursorModifier": "ctrlCmd",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.rulers": [
90
],
"editor.fontLigatures": true,
"editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', 'Droid Sans Fallback', 'Noto Color Emoji'",
"workbench.iconTheme": "material-icon-theme",
"files.autoSave": "off",
"editor.largeFileOptimizations": false,
"editor.suggestSelection": "first",
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"python.languageServer": "Microsoft",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"files.eol": "\n",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment