Skip to content

Commit

Permalink
🚀 Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasCtrl committed Apr 30, 2020
0 parents commit b76dfcd
Show file tree
Hide file tree
Showing 9 changed files with 824 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}
4 changes: 4 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to the "GMK-Dots" extension will be documented in this file.

Check [Keep a Changelog](https://keepachangelog.com/) for recommendations on how to structure this file.

## [1.0.0] - 2020-04-30
- Initial release
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 LucasAlt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
![](https://candykeys.com/img/gb/dots/dotslogo.png)
<small>Image by [CandyKeys](https://candykeys.com/group-buys/gmk-dots)</small>

# VSCode GMK Dots theme

## 👤 Author

**LucasAlt**
* Website: https://www.lucasalt.fr
* Twitter: [@LucasCtrlAlt](https://twitter.com/LucasCtrlAlt)
* GitHub: [@LucasCtrl](https://github.com/LucasCtrl)

## 🙏 Thanks

* [**@briano1905**](https://github.com/briano1905) for the color theme

## 🤝 Contributing

1. Fork it (https://github.com/LucasCtrl/vscode-gmk-dots-theme/fork)
2. Create your feature branch (`git checkout -b feature/fooBar`)
3. Commit your changes (`git commit -am 'Add some fooBar'`)
4. Push to the branch (`git push origin feature/fooBar`)
5. Create a new Pull Request

## Show your support

Give a ⭐️ if you like this project!

<a href="https://www.patreon.com/LucasAlt">
<img src="https://c5.patreon.com/external/logo/[email protected]" width="160">
</a>
<br />
<a href='https://ko-fi.com/S6S21FLR2' target='_blank'>
<img width='160' style='border:0px;width:160px;' src='https://cdn.ko-fi.com/cdn/kofi1.png?v=2' border='0' alt='Buy Me a Coffee at ko-fi.com' />
</a>

## 📝 License

This project is open source and available under the [MIT](https://github.com/LucasCtrl/vscode-gmk-dots-theme/blob/master/LICENSE)
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "gmk-dots",
"displayName": "GMK Dots",
"description": "A VSCode theme based on the GMK Dots keycaps set",
"version": "1.0.0",
"repository": "https://github.com/LucasCtrl/vscode-gmk-dots-theme",
"author": "LucasCtrl <[email protected]>",
"license": "MIT",
"icon": "https://github.com/LucasCtrl/vscode-gmk-dots-theme/blob/master/images/logo.png",
"galleryBanner": {
"color": "#191b25",
"theme": "dark"
},
"publisher": "LucasAlt",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "GMK Dots",
"uiTheme": "vs-dark",
"path": "./themes/GMK-Dots-color-theme.json"
}
]
}
}
Loading

0 comments on commit b76dfcd

Please sign in to comment.