Skip to content

Instantly share code, notes, and snippets.

@ferreira710
Created November 1, 2024 16:01
Show Gist options
  • Save ferreira710/1a482ec7d425415f55f66e9e5e9cc8a9 to your computer and use it in GitHub Desktop.
Save ferreira710/1a482ec7d425415f55f66e9e5e9cc8a9 to your computer and use it in GitHub Desktop.
VSCode Settings
{
// Window
"window.menuBarVisibility": "compact",
"window.commandCenter": false,
"window.zoomLevel": 0.8,
// Workbench
"workbench.iconTheme": "catppuccin-mocha",
"workbench.tree.indent": 20,
"workbench.tree.renderIndentGuides": "onHover",
"workbench.tree.expandMode": "doubleClick",
"workbench.startupEditor": "none",
"workbench.activityBar.location": "top",
"workbench.layoutControl.enabled": false,
"breadcrumbs.enabled": true,
// Terminal
"terminal.integrated.fontFamily": "'JetbrainsMono NF', 'FiraCode Nerd Font', 'Hack Nerd Font Mono', 'monospace'",
"terminal.integrated.lineHeight": 1.5,
// Explorer
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.sortOrder": "type",
// Editor
"editor.fontFamily": "'JetbrainsMono NF', 'FiraCode Nerd Font', 'Hack Nerd Font Mono', 'monospace'",
"editor.lineHeight": 1.5,
"editor.tabSize": 2,
"editor.semanticHighlighting.enabled": true,
"editor.fontSize": 15,
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"editor.cursorBlinking": "smooth",
"editor.fontLigatures": true,
"editor.smoothScrolling": true,
"editor.cursorStyle": "line",
"editor.cursorSmoothCaretAnimation": "on",
"editor.bracketPairColorization.enabled": true,
"editor.semanticTokenColorCustomizations": {
"enabled": true
},
"editor.rulers": [
100
],
// Arquivos
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
// Typescript
"typescript.tsserver.log": "off",
// Git & Github
"diffEditor.ignoreTrimWhitespace": true,
"git.autofetch": true,
"github.copilot.editor.enableAutoCompletions": true,
"inlineChat.mode": "preview",
// File Associations
"files.associations": {
".env.*": "dotenv",
"*.css": "tailwindcss",
"*.scss": "tailwindcss"
},
// Auto Forward Ports
"remote.autoForwardPortsSource": "hybrid",
// Untrusted Files
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "Ayu Light Bordered",
// Biomejs
"editor.defaultFormatter": "biomejs.biome",
"[javascript][javascriptreact][typescript][typescriptreact][json][jsonc][css]": {
"editor.defaultFormatter": "biomejs.biome"
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"notebook.defaultFormatter": "biomejs.biome",
// Path Intellisense
"typescript.suggest.paths": false,
"javascript.suggest.paths": false,
"workbench.colorCustomizations": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment