├── .gitignore ├── CHANGELOG.md ├── README.md ├── icon.png ├── index.ts ├── package.json ├── theme.json └── theme.png /.gitignore: -------------------------------------------------------------------------------- 1 | index.js 2 | node_modules/ 3 | .vscode -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | Initial release 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeKittens/VSC-HDS/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeKittens/VSC-HDS/HEAD/icon.png -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeKittens/VSC-HDS/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeKittens/VSC-HDS/HEAD/package.json -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeKittens/VSC-HDS/HEAD/theme.json -------------------------------------------------------------------------------- /theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeKittens/VSC-HDS/HEAD/theme.png --------------------------------------------------------------------------------