about summary refs log tree commit diff stats
path: root/editor/VSCode/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editor/VSCode/package.json')
-rw-r--r--editor/VSCode/package.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/editor/VSCode/package.json b/editor/VSCode/package.json
new file mode 100644
index 00000000..6619f4ea
--- /dev/null
+++ b/editor/VSCode/package.json
@@ -0,0 +1,25 @@
+{
+    "name": "mu",
+    "displayName": "Mu",
+    "description": "Syntax Highlighting for the Mu language",
+    "version": "0.0.1",
+    "engines": {
+        "vscode": "^1.62.0"
+    },
+    "categories": [
+        "Programming Languages"
+    ],
+    "contributes": {
+        "languages": [{
+            "id": "mu",
+            "aliases": ["Mu", "mu"],
+            "extensions": [".mu"],
+            "configuration": "./language-configuration.json"
+        }],
+        "grammars": [{
+            "language": "mu",
+            "scopeName": "source.mu",
+            "path": "./syntaxes/Mu.tmLanguage"
+        }]
+    }
+}
\ No newline at end of file