Created
June 2, 2021 03:39
-
-
Save ankurkaushal/6c3751e477caf5b591e5d88b01922473 to your computer and use it in GitHub Desktop.
VS Code - 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
{ | |
"editor.fontSize": 18, | |
"window.zoomLevel": 0, | |
"editor.minimap.enabled": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"terminal.integrated.fontSize": 16, | |
"explorer.openEditors.visible": 0, | |
"javascript.validate.enable": false, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"workbench.colorTheme": "Visual Studio Dark", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"extensions.ignoreRecommendations": true, | |
"workbench.editor.enablePreview": true, | |
"editor.suggestSelection": "first", | |
"search.quickOpen.includeHistory": false, | |
"files.exclude": { | |
"**/node_modules": true | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"files.associations": { | |
"*.json": "jsonc" | |
}, | |
"liveServer.settings.donotShowInfoMsg": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Notes:
editor.fontFamily
, you would need to install FiraCode.