Skip to content

Instantly share code, notes, and snippets.

@adrixvoid
Last active May 17, 2025 04:39
Show Gist options
  • Save adrixvoid/5ee14691661b62cd3605228f75b6cf87 to your computer and use it in GitHub Desktop.
Save adrixvoid/5ee14691661b62cd3605228f75b6cf87 to your computer and use it in GitHub Desktop.
Visual Studio Code - Workspace Settings
{
  "search.exclude": {
    "**/node_modules/**": true,
    "**/bower_components/**": true,
    "**/dist/**": true,
    "**/build/**": true,
    "**/coverage/**": true,
    "**/.next/**": true,
    "**/.vercel/**": true,
    "**/.cache/**": true,
    "**/.git/**": true,
    "package-lock.json": true,
    "yarn-lock.json": true,
    "pnpm-lock.json": true
  },
  "editor.formatOnSave": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": "always",
    "source.organizeImports": "always"
  },
  "cSpell.words": [
    "behance",
    "Behance",
    "Canva",
    "cloudinary",
    "clss",
    "clsx",
    "codepen",
    "Contactame",
    "datetime",
    "descargables",
    "dribbble",
    "Dribbble",
    "isbot",
    "linkedin",
    "Linkedin",
    "lucide",
    "markdoc",
    "Markdoc",
    "noopener",
    "noreferrer",
    "pinterest",
    "Pinterest",
    "Renderable",
    "Subcategoría",
    "subcategorías",
    "subheadline",
    "svgr",
    "tailwind",
    "tailwindcss",
    "tanstack",
    "typecheck",
    "vaporwave",
    "virtuals",
    "youtube",
    "zustand"
  ],
  "cSpell.language": "en,es",
  "editor.fontSize": 12,
  "frontMatter.framework.id": "astro",
  "frontMatter.preview.host": "http://localhost:4321",
  "[markdown]": {},
  "liveServer.settings.port": 5501,
  "editor.wordWrapColumn": 120,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "[astro]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "editor.tabSize": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment