Skip to content

Instantly share code, notes, and snippets.

@barelyhuman
Last active June 15, 2021 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barelyhuman/b4ba8db038a75d13f693664097b09fb7 to your computer and use it in GitHub Desktop.
Save barelyhuman/b4ba8db038a75d13f693664097b09fb7 to your computer and use it in GitHub Desktop.
Version 2 of my current base vscode settings
{
// Theme and Layout settings
"workbench.colorTheme": "Vitesse Light",
"workbench.iconTheme": "quill-icons-minimal",
"workbench.productIconTheme": "icons-carbon",
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "none",
"editor.minimap.renderCharacters": false,
"workbench.startupEditor": "none",
"workbench.sideBar.location": "right",
"window.autoDetectColorScheme": true,
"workbench.preferredDarkColorTheme": "Vitesse Dark",
"workbench.preferredLightColorTheme": "Vitesse Light",
// Font Settings
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "Menlo",
"editor.fontSize": 13.5,
"editor.fontFamily": "Menlo",
// Extension Settings
"emmet.triggerExpansionOnTab": true,
// Character Settings
"editor.tabSize": 2,
// Formatter Settings
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.preferences.quoteStyle": "single",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Permission Configs
"git.confirmSync": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment