An open API service indexing awesome lists of open source software.

https://github.com/losercodes/aman-emoji-folder-icons

Emoji Folder Icons is a simple and fun VS Code extension that replaces standard folder icons with emoji-based icons! ๐ŸŒŸ Easily identify your project folders with expressive emoji visuals
https://github.com/losercodes/aman-emoji-folder-icons

extension typescript vscode

Last synced: 12 months ago
JSON representation

Emoji Folder Icons is a simple and fun VS Code extension that replaces standard folder icons with emoji-based icons! ๐ŸŒŸ Easily identify your project folders with expressive emoji visuals

Awesome Lists containing this project

README

          

# Emoji Folder Icons for VS Code

Make your VS Code Explorer more visually engaging with automatically assigned emoji icons for your folders.

## Features

- Automatically detects common folder names and assigns relevant emoji icons
- Lightweight and non-intrusive UI integration with VS Code's File Explorer
- Customizable emoji mappings through settings
- Improves visual organization of your project structure

![Screenshot of Emoji Folder Icons in action]
![alt text](image.png)

## Default Emoji Mappings

Here are some examples of the default folder-to-emoji mappings:

| Folder Name | Emoji |
|-------------|-------|
| src, source | ๐Ÿ“ฆ |
| assets | ๐ŸŽจ |
| images, img | ๐Ÿ–ผ๏ธ |
| docs, documentation | ๐Ÿ“œ |
| test, tests | ๐Ÿงช |
| config | โš™๏ธ |
| dist | ๐Ÿ“ค |
| build | ๐Ÿ”จ |
| lib, libs | ๐Ÿ“š |
| components | ๐Ÿงฉ |
| utils | ๐Ÿ› ๏ธ |
| public | ๐ŸŒ |
| data | ๐Ÿ“Š |
| api | ๐Ÿ”Œ |

... and many more!

## Extension Settings

This extension contributes the following settings:

* `emojiFolderIcons.enabled`: Enable/disable the extension
* `emojiFolderIcons.customMappings`: Custom folder name to emoji mappings

Example settings.json:

```json
{
"emojiFolderIcons.enabled": true,
"emojiFolderIcons.customMappings": {
"myFolder": "๐Ÿš€",
"backend": "๐Ÿ–ฅ๏ธ"
}
}
```

## Commands

* `Emoji Folder Icons: Refresh` - Manually refresh the emoji icons

## Requirements

VS Code version 1.60.0 or higher.

## Extension Development

* Clone this repository
* Run `npm install`
* Press F5 to open a new window with your extension loaded
* Observe the emoji icons in the Explorer view
* Make changes to the code, restart the extension by reloading the window

## Known Issues

Please report any issues on the GitHub repository.

## Release Notes

### 0.1.0

Initial release of Emoji Folder Icons with basic functionality.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

This extension is licensed under the MIT License.