├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── icon.png ├── italic.png ├── package.json ├── screenshot.png ├── themes ├── soft-era-color-theme.json └── soft-era-test-1.tmTheme └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vsix 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/icon.png -------------------------------------------------------------------------------- /italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/italic.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/screenshot.png -------------------------------------------------------------------------------- /themes/soft-era-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/themes/soft-era-color-theme.json -------------------------------------------------------------------------------- /themes/soft-era-test-1.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/themes/soft-era-test-1.tmTheme -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-aesthetic/soft-era-vs-code/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------