Skip to content

Commit

Permalink
VS Code language extension initial package declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Oct 17, 2024
1 parent 5f1959e commit 376e401
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions extension/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "zhivo-syntax-highlighting",
"displayName": "Zhivo",
"description": "Zhivo language and syntax highlighting extension.",
"version": "0.0.1",
"icon": "../assets/zhivo-logo.png",
"publisher": "Nathanne Isip",
"repository": "https://github.com/nthnn/zhivo",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "zhivo",
"aliases": ["Zhivo", "zhivo"],
"extensions": [".zhv"],
"configuration": "./language-configuration.json",
"icon": {
"light": "../assets/zhivo-logo.png",
"dark": "../assets/zhivo-logo.png"
}
}],
"grammars": [{
"language": "zhivo",
"scopeName": "source.zhivo",
"path": "./syntaxes/zhivo.tmLanguage.json"
}]
}
}

0 comments on commit 376e401

Please sign in to comment.