Skip to content
This repository has been archived by the owner on Feb 9, 2025. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Nixinova committed May 30, 2020
0 parents commit 9e468c0
Show file tree
Hide file tree
Showing 8 changed files with 2,194 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.vscode/
.vscodeignore
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# novasheets-vscode
Syntax highligher for NovaSheet files
18 changes: 18 additions & 0 deletions language-configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["(", ")"],
[":", ";"]
],
"surroundingPairs": [
["{", "}"],
["(", ")"]
]
}
44 changes: 44 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "novasheets",
"displayName": "NovaSheets",
"description": "Syntax highligher for NovaSheet files",
"version": "1.0.0",
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Programming Languages",
"Themes"
],
"contributes": {
"languages": [
{
"id": "novasheets",
"aliases": [
"NovaSheets",
"novasheets",
"nss"
],
"extensions": [
".nss",
".nss.txt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "novasheets",
"scopeName": "source.nss",
"path": "./syntaxes/novasheets.tmLanguage.json"
}
],
"themes": [
{
"label": "NovaSheets Theme",
"uiTheme": "vs-dark",
"path": "./themes/novasheets-dark.json"
}
]
}
}
Loading

0 comments on commit 9e468c0

Please sign in to comment.