Last active
March 31, 2023 06:39
-
-
Save vazgen6/31d03935ffb39e65d2a0b1aff7fc7d71 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
{ | |
"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