Skip to content
This repository was archived by the owner on Sep 28, 2020. It is now read-only.

Commit 2d17b20

Browse files
committed
first VSCode release
1 parent 9412ccc commit 2d17b20

5 files changed

Lines changed: 1465 additions & 0 deletions

File tree

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// A launch configuration that launches the extension inside a new window
2+
{
3+
"version": "0.1.0",
4+
"configurations": [
5+
{
6+
"name": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
11+
}
12+
]
13+
}

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
11
# RealGithub-VSCode
22
Repository to store VSCode theme package
3+
4+
# Install
5+
6+
```ext install theme-realgithub```
7+
8+
# Purpose
9+
10+
The purpose of the organization RealGithub is to provide color theme 100% alike to the one used in and from github for all major cross platform text editors.
11+
12+
# Credits
13+
14+
The original theme is the one stored in this repository.
15+
16+
It was made with (http://tmtheme-editor.herokuapp.com) and we appreciate the project TmTheme-Editor.
17+
18+
For more info visit (https://github.com/aziz/tmTheme-Editor).
19+
20+
RealGithub theme was not build from scratch instead we used Inspiredgithub theme (http://tmtheme-editor.herokuapp.com/#!/editor/theme/Inspiredgithub) from (http://tmtheme-editor.herokuapp.com) as a starting point, but we made some tiny changes so the resulting theme looks exaclty like the one used in and from github.
21+
22+
We want to thank to (https://github.com/aziz/tmTheme-Editor), the creator of (http://tmtheme-editor.herokuapp.com/#!/editor/theme/Inspiredgithub) and (https://github.com) beacuse they are the reason for creation of RealGithub theme.
23+
24+
# Mismatch
25+
26+
If you find any mismatch from github's theme plase make a new Issue or new Pull Request to the original RealGithub theme repository (https://github.com/RealGithub/RealGithub) not to this one.
27+
28+
# Enjoy the coding experience!
29+
30+
# We hope we bring you the same coding experience as editing or reading code from github!
31+
32+
# We <3 github!

icon.png

7.93 KB
Loading

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "theme-realgithub",
3+
"displayName": "Theme-RealGithub",
4+
"description": "The One And Only 100% Alike Github theme",
5+
"version": "1.0.0",
6+
"publisher": "NoHomey",
7+
"repository": "https://github.com/RealGithub/RealGithub-VSCode",
8+
"icon": "icon.png",
9+
"engines": {
10+
"vscode": "^1.0.0"
11+
},
12+
"categories": [
13+
"Themes"
14+
],
15+
"contributes": {
16+
"themes": [
17+
{
18+
"label": "RealGithub",
19+
"uiTheme": "vs",
20+
"path": "./themes/RealGithub.tmTheme"
21+
}
22+
]
23+
}
24+
}

0 commit comments

Comments
 (0)