Skip to content

Commit

Permalink
Added initial sources.
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-daniels committed Dec 16, 2017
1 parent 93a05a5 commit 6f8b86a
Show file tree
Hide file tree
Showing 8 changed files with 679 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.vsix
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Change Log
All notable changes to the "zephyr-dark-theme" extension will be documented in this file.

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

## [Unreleased]
- Initial release
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.
23 changes: 23 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "zephyr-dark-theme",
"displayName": "zephyr-dark-theme",
"description": "Zephyr Dark - custom color theme for VS Code.",
"version": "1.0.0",
"publisher": "jake-daniels",
"engines": {
"vscode": "^1.19.0"
},
"icon": "icon.png",
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Zephyr Dark",
"uiTheme": "vs-dark",
"path": "./themes/zephyr-dark-color-theme.json"
}
]
}
}
Loading

0 comments on commit 6f8b86a

Please sign in to comment.