Skip to content

Instantly share code, notes, and snippets.

@vanessabrazuna
Created March 6, 2024 21:31
Show Gist options
  • Save vanessabrazuna/92b06f6fb60c53870ca03b5151910b4e to your computer and use it in GitHub Desktop.
Save vanessabrazuna/92b06f6fb60c53870ca03b5151910b4e to your computer and use it in GitHub Desktop.
settings.json
{
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 17,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [
80,
120
],
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json"
},
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"cSpell.language": "en,pt",
"editor.lineHeight": 26,
"typescript.updateImportsOnFileMove.enabled": "never",
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"terminal.integrated.showExitAlert": false,
"[prisma]": {
"editor.formatOnSave": true
},
"typescript.suggest.autoImports": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"workbench.editor.labelFormat": "short",
"editor.fontLigatures": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.acceptSuggestionOnCommitCharacter": false,
"explorer.compactFolders": false,
"git.enableSmartCommit": true,
"editor.accessibilitySupport": "off",
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 17,
"terminal.integrated.fontFamily": "Fira Code",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": true,
"workbench.productIconTheme": "fluent-icons",
"editor.fontFamily": "Fira Code",
"editor.tabSize": 2,
"security.workspace.trust.untrustedFiles": "newWindow",
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true,
// "node_modules": true
},
"tabnine.experimentalAutoImports": true,
"editor.minimap.enabled": false,
"update.mode": "start",
"terminal.integrated.gpuAcceleration": "off",
"terminal.integrated.defaultProfile.osx": "zsh",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"workbench.colorTheme": "Dracula",
"symbols.hidesExplorerArrows": false,
"workbench.editor.empty.hint": "hidden",
"terminal.integrated.env.osx": {},
"editor.quickSuggestions": {
"other": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment