Skip to content

Commit 9165529

Browse files
committed
Initial commit
0 parents  commit 9165529

File tree

9 files changed

+1784
-0
lines changed

9 files changed

+1784
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.vsix

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

.vscodeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
vsc-extension-quickstart.md

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to the "moonbloom-x" extension will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
## [Unreleased]
8+
9+
- Initial release

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# moonbloom-x README
2+
3+
## Working with Markdown
4+
5+
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
6+
7+
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux).
8+
* Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux).
9+
* Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets.
10+
11+
## For more information
12+
13+
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
14+
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
15+
16+
**Enjoy!**

package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "moonbloom-x",
3+
"displayName": "moonbloom-x",
4+
"description": "",
5+
"version": "0.0.1",
6+
"engines": {
7+
"vscode": "^1.95.0"
8+
},
9+
"categories": [
10+
"Themes"
11+
],
12+
"contributes": {
13+
"themes": [
14+
{
15+
"label": "Moonbloom Dark Theme",
16+
"uiTheme": "vs-dark",
17+
"path": "./themes/Moonbloom Dark Theme-color-theme.json"
18+
}
19+
]
20+
}
21+
}

0 commit comments

Comments
 (0)