Skip to content

Instantly share code, notes, and snippets.

@leonardoraele
Last active July 4, 2023 19:28
Show Gist options
  • Save leonardoraele/ffd09ca6673de6053a4fe688fb32e8a9 to your computer and use it in GitHub Desktop.
Save leonardoraele/ffd09ca6673de6053a4fe688fb32e8a9 to your computer and use it in GitHub Desktop.
My personal VSCode settings (for backup and reference purposes)
// File location:
// User settings (Windows): %APPDATA%\Code\User\settings.json
// User settings (macOS): $HOME/Library/Application\ Support/Code/User/settings.json
// User settings (Linux): $HOME/.config/Code/User/settings.json
// Project settings: ${workspaceFolder}/.vscode/settings.json
{
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.rulers": [
80,
120
],
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 150,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"workbench.tree.indent": 20
// [js]: {
// Language-specific settings
// }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment