chore: add initial files

This commit is contained in:
Mattia Astorino 2017-01-27 22:01:25 +01:00
parent 8a56cb0b79
commit 7b3fae5844
8 changed files with 1131 additions and 39 deletions

16
.editorconfig Normal file
View file

@ -0,0 +1,16 @@
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
[*.{py,sublime-project}]
indent_size = 4
[*.md]
trim_trailing_whitespace = false
indent_size = 4

37
.gitignore vendored
View file

@ -1,37 +0,0 @@
# Logs
logs
*.log
npm-debug.log*
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules
jspm_packages
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history

13
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}

7
CHANGELOG.md Normal file
View file

@ -0,0 +1,7 @@
# Change Log
All notable changes to the "theme-material-theme-darker" extension will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## [Unreleased]
- Initial release

View file

@ -1,2 +1,13 @@
# vsc-material-theme # README
Official Material Theme for Visual Studio Code ## This is the README for your extension "theme-material-theme-darker"
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
* Split the editor (`Cmd+\` on OSX or `Ctrl+\` on Windows and Linux)
* Toggle preview (`Shift+CMD+V` on OSX or `Shift+Ctrl+V` on Windows and Linux)
* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (OSX) 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!**

22
package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "theme-material-theme-darker",
"displayName": "Material Theme",
"description": "The most epic theme now for Visual Studio Code",
"version": "0.0.1",
"publisher": "Equinusocio",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Material Theme",
"uiTheme": "vs-dark",
"path": "./themes/Material-Theme-Darker.tmTheme"
}
]
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,43 @@
# Welcome to your VS Code Extension
## What's in the folder
* This folder contains all of the files necessary for your color theme extension
* `package.json` - this is the manifest file that defines the location of the theme file
and specifies the base theme of the theme
* `themes/Material-Theme-Darker.tmTheme` - the color theme definition file
## Get up and running straight away
* press `F5` to open a new window with your extension loaded
* open `File > Preferences > Color Themes` and pick your color theme
## Make changes
* you can relaunch the extension from the debug toolbar after making changes to the files listed above
* you can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes
## Adopt your theme to Visual Studio Code
* VS Code themes are standard TextMate themes. It's recommended to stick to the TextMate conventions and avoid language
specific rules in your theme as grammars can also be replaced by extensions.
To learn about what scopes are used where, check out the [TextMate documentation](https://manual.macromates.com/en/themes)
and this useful [blog post](http://www.apeth.com/nonblog/stories/textmatebundle.html). A great place to examine themes is [here](https://tmtheme-editor.herokuapp.com/#!/editor/theme/Monokai).
* Besides coloring syntax tokens, VS Code uses the following editor color settings from the textmate file:
* `caret`: Color of the carret.
* `lineHighlight`: Background color of line highlight.
* `selection`: Background color of selections.
* `rangeHighlight`: Background color of range highlighted, used by Quick Open and Find features.
* `selectionHighlight`: Background color of regions highlighted while selecting.
* `inactiveSelection`: Background color of selections when not in focus.
* `wordHighlight`: Background color of a symbol during read-access, like reading a variable.
* `wordHighlightStrong`: Background color of a symbol during write-access, like writing to a variable.
* `findMatchHighlight`: Background color of regions matching the search.
* `currentFindMatchHighlight`: Background color of the current region matching the search.
* `findRangeHighlight`: Background color of regions selected for search.
* `activeLinkForeground`: Color of active links.
* `hoverHighlight`: Background color when hovered.
* `referenceHighlight`: Background color of a reference when finding all references.
* `invisible`: Color of the whitespace symbols.
* `guide`: Color of the indentation guides which indicate nesting levels.
## Install your extension
* To start using your extension with Visual Studio Code copy it into the <user home>/.vscode/extensions folder and restart Code.
* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension.