Skip to content

Instantly share code, notes, and snippets.

@iaematt
Last active July 21, 2023 20:11
Show Gist options
  • Save iaematt/807126999ddea6750e3a9c3bb97f1e15 to your computer and use it in GitHub Desktop.
Save iaematt/807126999ddea6750e3a9c3bb97f1e15 to your computer and use it in GitHub Desktop.
settings.json
{
/** Visual Studio Code config */
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 11,
"editor.fontWeight": "200",
"editor.fontLigatures": true,
"editor.lineHeight": 15,
"editor.letterSpacing": 0.2,
"editor.rulers": [80, 120],
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.fontSize": 11,
"terminal.integrated.fontWeight": "100",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "SynthWave '84",
"synthwave84.brightness": 0.5,
"diffEditor.ignoreTrimWhitespace": false,
"editor.quickSuggestions": {
"strings": true
},
"workbench.iconTheme": "material-icon-theme",
"window.menuBarVisibility": "compact",
"window.commandCenter": false,
"window.zoomLevel": -2,
"material-icon-theme.hidesExplorerArrows": true,
"material-icon-theme.folders.associations": {
"storage": "Server",
"sessions": "Connection",
"support": "Include",
"faq": "I18n",
"adm": "admin",
"stripe": "Api",
"taxes": "Other",
"seeds": "Dump",
"migrations": "Interface",
"BancoInter": "Queue",
"NSTecnologia": "Docs",
"firewall": "Archive",
"ticket": "Archive",
"fiscal": "Docs",
"nfe": "Meta",
"products": "Cart",
"workflows": "Base",
"ui": "Theme"
},
"emmet.showExpandedAbbreviation": "never",
/** Spell check and ignore words */
"cSpell.language": "en,pt,pt-PT,pt-BR",
/** Security */
"security.workspace.trust.untrustedFiles": "open",
/** Prettier config */
"prettier.trailingComma": "es5",
"prettier.tabWidth": 4,
"prettier.printWidth": 120,
"prettier.semi": true,
"prettier.singleQuote": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
/** PHP config */
"workbench.editor.untitled.hint": "hidden",
"[php]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"composer.executablePath": "C:\\laragon\\bin\\composer\\composer.bat",
"terminal.integrated.gpuAcceleration": "off",
"cSpell.customDictionaries": {
"custom-dictionary-user": {
"name": "custom-dictionary-user",
"path": "~/.cspell/custom-dictionary-user.txt",
"addWords": true,
"scope": "user"
}
},
"workbench.productIconTheme": "fluent-icons",
"files.autoSave": "onFocusChange",
"typescript.updateImportsOnFileMove.enabled": "never"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment