diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-02-23 20:24:10 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-02-23 20:27:23 +0100 |
| commit | 7092c504474eca25ba456db606de11402ea1e8ca (patch) | |
| tree | 128cb37a91e68d8be9487942d7358b89aea8135a /tools/support/package.json | |
| parent | de37a056ed3e90d8ba93c4b3a315a8046ef53484 (diff) | |
VS Code language support extension ðŸ›
Diffstat (limited to 'tools/support/package.json')
| -rw-r--r-- | tools/support/package.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/support/package.json b/tools/support/package.json new file mode 100644 index 00000000..c28b691b --- /dev/null +++ b/tools/support/package.json @@ -0,0 +1,29 @@ +{ + "name": "typst", + "displayName": "Typst", + "description": "Typst Language Support.", + "version": "0.0.1", + "engines": { + "vscode": "^1.53.0" + }, + "categories": [ + "Programming Languages" + ], + "contributes": { + "languages": [ + { + "id": "typst", + "aliases": ["Typst", "typst"], + "extensions": [".typ"], + "configuration": "./config.json" + } + ], + "grammars": [ + { + "language": "typst", + "scopeName": "source.typst", + "path": "./typst.tmLanguage.json" + } + ] + } +} |
