Skip to content

Commit

Permalink
scaffold theme project
Browse files Browse the repository at this point in the history
  • Loading branch information
mightbesimon committed Jul 21, 2022
1 parent 6ef0164 commit 8787ac7
Show file tree
Hide file tree
Showing 7 changed files with 706 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// 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",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.tabSize": 2,
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.99.99 — 28 July 2022

Initial pre-release

-[feature]:
-[feature]:
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
# vscode-mariana
# README
## This is the README for your extension "mariana"
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:

* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux)
* Toggle preview (`Shift+CMD+V` on macOS or `Shift+Ctrl+V` on Windows and Linux)
* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (macOS) to see a list of Markdown snippets

### For more information
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)

**Enjoy!**
32 changes: 32 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "mariana",
"displayName": "Mariana",
"description": "Mariana theme from Sublime Text",
"icon": "thumbnails/Sublime Text.icns",
"galleryBanner": {
"color": "#23282f",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/mightbesimon/vscode-mariana/"
},
"author": "mightbesimon",
"publisher": "mightbesimon",
"version": "0.99.99",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Mariana",
"uiTheme": "vs-dark",
"path": "./themes/mariana-color-theme.json"
}
]
}
}
Loading

0 comments on commit 8787ac7

Please sign in to comment.