Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
zyj1022 committed Nov 30, 2019
1 parent 0c3d5b1 commit 297f493
Show file tree
Hide file tree
Showing 8 changed files with 1,353 additions and 2 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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to the "polish-theme" extension will be documented in this file.

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

## [0.0.1]

- Initial release
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# vscode-polish-theme
A vibrant theme for VSCode.
# # Polish Theme for [Visual Studio Code](http://code.visualstudio.com)


> A dark theme for [Visual Studio Code](http://code.visualstudio.com).
## Install

Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "polish-theme",
"displayName": "Polish Theme",
"description": "A vibrant theme for VSCode.",
"version": "0.0.1",
"engines": {
"vscode": "^1.40.0"
},
"maintainers": [
"ZhiKing <[email protected]>"
],
"publisher": "ZhiKing",
"repository": {
"type": "git",
"url": "https://github.com/zyj1022/vscode-polish-theme.git"
},
"categories": [
"Themes"
],
"keywords": [
"polish",
"dark",
"theme",
"color-theme"
],
"icon": "icon.png",
"contributes": {
"themes": [{
"label": "Polish Theme",
"uiTheme": "vs-dark",
"path": "./themes/polish.dark.json"
}]
}
}
Loading

0 comments on commit 297f493

Please sign in to comment.