Skip to content

Instantly share code, notes, and snippets.

@mateusneiva
Last active February 29, 2024 23:54
Show Gist options
  • Save mateusneiva/d9c8cdd5a18631b3afcd350d329603c7 to your computer and use it in GitHub Desktop.
Save mateusneiva/d9c8cdd5a18631b3afcd350d329603c7 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.fontFamily": "'FiraCode Nerd Font', Consolas, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"explorer.compactFolders": false,
"breadcrumbs.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "One Dark Pro Mix",
"workbench.iconTheme": "symbols",
"workbench.editor.labelFormat": "short",
"workbench.layoutControl.enabled": false,
"workbench.statusBar.visible": false,
"editor.minimap.enabled": false,
"editor.fontLigatures": true,
"files.autoSave": "afterDelay",
"files.eol": "\n",
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"symbols.hidesExplorerArrows": false,
"eslint.validate": ["typescript", "javascript"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"[javascript][typescript][javascriptreact][typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.productIconTheme": "icons-carbon",
"window.title": "${appName}",
"window.commandCenter": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment