miguelsolorio / vscode-symbols

A file icon theme for VS Code
https://marketplace.visualstudio.com/items?itemName=miguelsolorio.symbols
MIT License
365 stars 67 forks source link

Replace Angular icons with TS and JS by default #226

Open brianmorais opened 3 months ago

brianmorais commented 3 months ago

Would it be possible to define the pattern of the .service.ts, .service.js, .component.ts and .component.js files for the typescript and javascript icons? So that if the user prefers to use Angular or even Nest icons, he does the mapping himself.

Example: image

At the moment: image

miguelsolorio commented 3 months ago

Yes, you can set the following in your user settings (ref):

"symbols.files.associations": {
    "*.component.js": "js",
    "*.component.ts": "ts",
    "*.service.js": "js",
    "*.service.ts": "ts"
}

But I'll leave this issue open for those that may want to vote to change it. I could see an argument for both sides.