summaryrefslogtreecommitdiff
path: root/snippets/package.json
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-02-08 11:49:10 +0100
committerNaz <ndpm13@ch-naseem.com>2025-02-08 11:49:10 +0100
commit9b9eab0b94e1aa7202226002d8774603677d23ba (patch)
treec6b9f4d4485d0873553bf324a976b7691aa70667 /snippets/package.json
parent0f181056a80d84e71f402b4d202c68c0212e215a (diff)
✨feat: add LSP and IDEish plugins
Diffstat (limited to 'snippets/package.json')
-rw-r--r--snippets/package.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/snippets/package.json b/snippets/package.json
new file mode 100644
index 0000000..6582dd0
--- /dev/null
+++ b/snippets/package.json
@@ -0,0 +1,27 @@
+{
+ "name": "my-snippets",
+ "engines": {
+ "vscode": "^1.11.0"
+ },
+ "contributes": {
+ "snippets": [
+ {
+ "language": [
+ "plaintext",
+ "markdown",
+ "tex",
+ "html",
+ "global",
+ "all"
+ ],
+ "path": "./global.json"
+ },
+ {
+ "language": [
+ "sql"
+ ],
+ "path": "./sql.json"
+ }
+ ]
+ }
+}