Skip to content

Instantly share code, notes, and snippets.

@ianfelix
Last active June 30, 2022 14:55
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 ianfelix/3bce1bf4331c5695945c5a7f1ffcd374 to your computer and use it in GitHub Desktop.
Save ianfelix/3bce1bf4331c5695945c5a7f1ffcd374 to your computer and use it in GitHub Desktop.
VSCode Settings
{
// Workbench
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dracula Pro (Van Helsing)",
"workbench.editor.labelFormat": "short",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.untitled.hint": "hidden",
"workbench.productIconTheme": "fluent-icons",
// Editor settings
"editor.formatOnSave": true,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": true,
"editor.wordWrap": "on",
"editor.fontSize": 14,
"editor.lineHeight": 20,
"terminal.integrated.fontSize": 14,
"editor.guides.bracketPairs": "active",
"editor.tabSize": 2,
"editor.fontFamily": "JetBrains Mono, Fira Code",
"editor.fontLigatures": true,
"editor.renderLineHighlight": "gutter",
"editor.rulers": [
80,
120
],
"editor.parameterHints.enabled": true,
"editor.semanticHighlighting.enabled": true,
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
// VSCode stuff
"breadcrumbs.enabled": true,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
// Emmet
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// Extensions
"extensions.ignoreRecommendations": true,
"cSpell.language": "en,pt",
"diffEditor.ignoreTrimWhitespace": false,
"material-icon-theme.folders.associations": {
"domain": "core",
"infra": "app",
"main": "public",
"presentation": "connection",
"cryptography": "secure",
"entities": "class",
"repositories": "mappings",
"protocols": "resource",
"useCases": "components",
"subcomponents": "components",
"adapters": "connection",
"factories": "container",
"globals": "global",
"ui": "views"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
".lintstagedrc.json": "tune"
},
"polacode.transparentBackground": true,
"polacode.shadow": "none",
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": false,
"javascript": false
},
"gitlens.defaultDateFormat": null,
"gitlens.hovers.currentLine.over": "line",
"liveServer.settings.donotShowInfoMsg": true,
"git.confirmSync": false,
"editor.inlineSuggest.enabled": true,
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json",
"*.jsx": "javascriptreact",
"*.tsx": "typescriptreact"
},
"sync.gist": "10c26007a7f30531c6ac9f154c7313c7",
"sync.quietSync": true,
"sync.autoDownload": true,
"sync.autoUpload": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment