Skip to content

Commit 3daec07

Browse files
author
re1san
committed
Initial
1 parent 8880a8a commit 3daec07

File tree

9 files changed

+2209
-0
lines changed

9 files changed

+2209
-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 "tsuki" 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+
# tsuki 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: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "tsuki",
3+
"displayName": "Tsuki",
4+
"description": "A dark theme matching theme for Nya-Kde rice!",
5+
"version": "0.0.1",
6+
"publisher": "Re1san",
7+
"repository": {
8+
"type" : "git",
9+
"url": "https://github.com/re1san/Tsuki"
10+
},
11+
"keywords": [
12+
"theme",
13+
"dark theme",
14+
"tsuki",
15+
"nya",
16+
"arch",
17+
"linux"
18+
],
19+
"engines": {
20+
"vscode": "^1.85.0"
21+
},
22+
"categories": [
23+
"Themes"
24+
],
25+
"contributes": {
26+
"themes": [
27+
{
28+
"label": "Tsuki",
29+
"uiTheme": "vs-dark",
30+
"path": "./themes/Tsuki-color-theme.json"
31+
}
32+
]
33+
}
34+
}

0 commit comments

Comments
 (0)