Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@igorvieira
Last active March 25, 2024 02:46
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 igorvieira/f2984f6896171a98cd95a2244b83c296 to your computer and use it in GitHub Desktop.
Save igorvieira/f2984f6896171a98cd95a2244b83c296 to your computer and use it in GitHub Desktop.
Vscode settings
{
"[astro]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[dockercompose]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.formatOnType": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.ignoreTrimWhitespace": false,
"editor.accessibilitySupport": "off",
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.detectIndentation": false,
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.fontWeight": "400",
"editor.formatOnSave": true,
"editor.inlineSuggest.enabled": true,
"editor.letterSpacing": 0.5,
"editor.lineHeight": 25,
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"emmet.includeLanguages": {
"erb": "html",
"js": "html"
},
"files.trimTrailingWhitespace": true,
"playwright.reuseBrowser": false,
"playwright.showTrace": false,
"prettier.eslintIntegration": true,
"security.workspace.trust.untrustedFiles": "newWindow",
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"vsicons.dontShowNewVersionMessage": true,
"workbench.colorTheme": "Dracula Soft",
"workbench.editor.enablePreview": false,
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "newUntitledFile"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment