Skip to content

Instantly share code, notes, and snippets.

@lumiobrie
Created February 4, 2024 18:45
Show Gist options
  • Save lumiobrie/82d17202e1f69ccf3bbeaa4887cdf559 to your computer and use it in GitHub Desktop.
Save lumiobrie/82d17202e1f69ccf3bbeaa4887cdf559 to your computer and use it in GitHub Desktop.
Essential VSCode configuration.
/* Requires this extensions:
* Material Icon Theme - Philipp Kief
* Prettier - Prettier
* Rainglow - Dayle Rees
*/
{
"workbench.sideBar.location": "right",
"editor.linkedEditing": true,
"editor.guides.bracketPairs": true,
"editor.stickyScroll.enabled": true,
"editor.cursorSmoothCaretAnimation": "on",
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"editor.fontFamily": "'CaskaydiaCove Nerd Font', Consolas, 'Courier New', monospace",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"git.autofetch": true,
"editor.tabSize": 2,
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "Hub Contrast (rainglow)",
"workbench.iconTheme": "material-icon-theme",
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment