Skip to content

Instantly share code, notes, and snippets.

@higby
Created August 2, 2023 01:31
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 higby/7d11663991f40381010ab2acf12b4175 to your computer and use it in GitHub Desktop.
Save higby/7d11663991f40381010ab2acf12b4175 to your computer and use it in GitHub Desktop.
VS Code Settings
{
// Appearance
"workbench.colorTheme": "Moonlight II Italic",
"workbench.iconTheme": "bearded-icons",
"editor.fontFamily": "MonoLisa",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.lineHeight": 0,
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "MonoLisa",
"terminal.integrated.fontSize": 14,
// VS Code Defaults
"editor.minimap.enabled": false,
"workbench.startupEditor": "none",
"explorer.confirmDragAndDrop": false,
// Linters
"typescript.validate.enable": false,
"javascript.validate.enable": false,
"eslint.validate": ["javascript"],
// Formatters
"editor.formatOnSave": true,
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"formattingToggle.affects": ["editor.formatOnSave"],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[css]": {
"editor.formatOnSave": false
},
"[scss]": {
"editor.formatOnSave": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment