diff options
| author | Naz <ndpm13@ch-naseem.com> | 2025-02-08 11:49:10 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2025-02-08 11:49:10 +0100 |
| commit | 9b9eab0b94e1aa7202226002d8774603677d23ba (patch) | |
| tree | c6b9f4d4485d0873553bf324a976b7691aa70667 /snippets/package.json | |
| parent | 0f181056a80d84e71f402b4d202c68c0212e215a (diff) | |
✨feat: add LSP and IDEish plugins
Diffstat (limited to 'snippets/package.json')
| -rw-r--r-- | snippets/package.json | 27 |
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" + } + ] + } +} |
