Skip to content

Instantly share code, notes, and snippets.

@ankurkaushal
Created June 2, 2021 03:39
Show Gist options
  • Save ankurkaushal/6c3751e477caf5b591e5d88b01922473 to your computer and use it in GitHub Desktop.
Save ankurkaushal/6c3751e477caf5b591e5d88b01922473 to your computer and use it in GitHub Desktop.
VS Code - settings
{
"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
}
@ankurkaushal
Copy link
Author

Notes:

  • For editor.fontFamily, you would need to install FiraCode.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment