Skip to content

Commit 01e1385

Browse files
committed
Initial Commit
0 parents  commit 01e1385

9 files changed

+2288
-0
lines changed

.gitattributes

+2
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

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
*.vsix
3+
.DS_Store

.vscode/launch.json

+17
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

+4
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

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Change Log
2+
3+
## 0.1.0
4+
5+
- Initial release

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# TwilightSparkle
2+
3+
A theme for VS Code inspired by Twilightsparkle from My little pony

package.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "twilightsparkle",
3+
"displayName": "TwilightSparkle",
4+
"description": "A theme for VS Code inspired by Twilightsparkle from My little pony",
5+
"version": "0.1.0",
6+
"publisher": "nanoparsec",
7+
"author": {
8+
"name": "nanoparsec"
9+
},
10+
11+
"engines": {
12+
"vscode": "^1.75.0"
13+
},
14+
"categories": [
15+
"Themes"
16+
],
17+
"contributes": {
18+
"themes": [
19+
{
20+
"label": "twilightsparkle",
21+
"uiTheme": "vs-dark",
22+
"path": "./themes/twilightsparkle-color-theme.json"
23+
}
24+
]
25+
},
26+
"repository": {
27+
"type": "git",
28+
"url": "https://github.com/nanoparsec/twilightsparkle-vscode.git"
29+
},
30+
"bugs": {
31+
"url": "https://github.com/nanoparsec/twilightsparkle-vscode/issues"
32+
}
33+
}

0 commit comments

Comments
 (0)