{"id":13676544,"url":"https://github.com/miguelsolorio/vscode-symbols","last_synced_at":"2026-05-30T03:00:57.203Z","repository":{"id":51109140,"uuid":"520259184","full_name":"miguelsolorio/vscode-symbols","owner":"miguelsolorio","description":"A file icon theme for VS Code","archived":false,"fork":false,"pushed_at":"2026-05-28T18:43:07.000Z","size":5557,"stargazers_count":530,"open_issues_count":44,"forks_count":94,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-05-28T19:27:16.899Z","etag":null,"topics":["file","icon","theme","vscode"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=miguelsolorio.symbols","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/miguelsolorio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-08-01T20:52:50.000Z","updated_at":"2026-05-28T18:33:42.000Z","dependencies_parsed_at":"2026-05-30T03:00:42.198Z","dependency_job_id":null,"html_url":"https://github.com/miguelsolorio/vscode-symbols","commit_stats":null,"previous_names":["misolori/vscode-symbols"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/miguelsolorio/vscode-symbols","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelsolorio%2Fvscode-symbols","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelsolorio%2Fvscode-symbols/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelsolorio%2Fvscode-symbols/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelsolorio%2Fvscode-symbols/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/miguelsolorio","download_url":"https://codeload.github.com/miguelsolorio/vscode-symbols/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelsolorio%2Fvscode-symbols/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33678271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["file","icon","theme","vscode"],"created_at":"2024-08-02T13:00:29.314Z","updated_at":"2026-05-30T03:00:57.197Z","avatar_url":"https://github.com/miguelsolorio.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cimg src=\"https://raw.githubusercontent.com/misolori/vscode-symbols/main/symbols.png\" width=\"140\" /\u003e\n\n# Symbols\n\nA file icon for VS Code\n\n![Preview of extension](https://github.com/misolori/vscode-symbols/raw/main/preview.png)\n\n\u003c/div\u003e\n\n## Contributing\n\nIf you'd like to contribute to this extension, please take a look at the issues or create a new one. If you'd like to create a new icon, please reference the [Symbols - File Icon Figma file](https://www.figma.com/file/HYLMyRbIdSbIJQlqnd9pSN/Symbols---File-Icons?node-id=20521%3A84115\u0026t=PyBzZOlVG5TXyEdx-1), you can make a copy or reference the styles used (tailwind). Please try to limit your colors to the ones used in existing icons before choosing a different color style.\n\nWhen submitting a PR, please ensure you've tested the extension locally and ensure that your new icons appear correctly in the file tree view with your new file extension. Include a screenshot of your proposed icon in your PR.\n\n## Generating Icon Previews\n\nBefore submitting a PR, please run the preview generation script to update the icon previews:\n\n```bash\nnpm run generate-previews\n```\n\nThis script will update the preview markdown files with your new icons. Make sure to commit these changes along with your PR.\n\n## Configuration\n\nYou can configure which folders and files icons are displayed by using the following settings:\n\n### Folders\n\n```json\n\"symbols.folders.associations\": {\n    \"{folder name}\": \"{icon name}\"\n}\n```\n\nExample:\n\n```json\n\"symbols.folders.associations\": {\n    \"entities\": \"folder-assets\",\n    \"infra\": \"folder-app\",\n    \"schemas\": \"folder-purple\"\n}\n```\n\n### Files\n\n```json\n\"symbols.files.associations\": {\n    \"{file name}\": \"{icon name}\"\n}\n```\n\nExample:\n\n```json\n\"symbols.files.associations\": {\n    \"app.module.ts\": \"nest\",\n    \"*.service.ts\": \"nest\"\n}\n```\n\n_Note: For file names, you can use `*` to match all files with a specific file extension._\n\n### Subfolder Files\n\n```json\n\"symbols.subfolder.file.associations\": {\n    \"{subfolder}\": {\n        \"{filename}\": \"{icon name}\"\n    }\n}\n```\n\nExample:\n\n```json\n\"symbols.subfolder.file.associations\": {\n    \"annotation\": {\n        \"*.java\": \"at\",\n        \"LogAPICall.java\": \"at-blue\"\n    }\n}\n```\n\n_Note: For file names, you can use `*` to match all files with a specific file extension._\n\n## Icon Preview\n\nYou can preview the icons by reading the the [preview.md](./preview/preview.md) file.\n\n## React Symbols\n\n[Pablo Hdez](https://github.com/pheralb) has graciously created [React-Symbols](https://react-symbols.vercel.app) ([pheralb/react-symbols](https://github.com/pheralb/react-symbols)) to allow you to embed Symbol icons for your React projects.\n\n\u003cimg src=\"https://raw.githubusercontent.com/pheralb/react-symbols/main/website/public/images/og.png\"\u003e\n\n## Open VSX\n\nIf you're using editors like [Cursor](https://cursor.com/), [Antigravity](https://antigravity.google/), or [VSCodium](https://vscodium.com/), you can find the extension on [Open VSX](https://open-vsx.org/extension/misolori/symbols).\n\n## Zed Editor\n\nIf you're using the [Zed](https://zed.dev) editor, you can find its maintained version here: [Symbols for Zed](https://github.com/sebastiandotdev/zed-symbols).\n\n## JetBrains IDEs\n\nIf you're using a [JetBrains](https://www.jetbrains.com) IDE (including [Android Studio](https://developer.android.com/studio)), you can find its maintained version here: [Symbols for JetBrains](https://github.com/sebastiandotdev/jetbrains-symbols).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiguelsolorio%2Fvscode-symbols","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiguelsolorio%2Fvscode-symbols","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiguelsolorio%2Fvscode-symbols/lists"}