summaryrefslogtreecommitdiff
path: root/nvim/snippets/package.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nvim/snippets/package.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/nvim/snippets/package.json b/nvim/snippets/package.json
new file mode 100644
index 0000000..efb2b49
--- /dev/null
+++ b/nvim/snippets/package.json
@@ -0,0 +1,38 @@
+{
+ "name": "gotools",
+ "displayName": "Golang Tools",
+ "description": "Tools for productive work",
+ "version": "0.1.5",
+ "engines": {
+ "vscode": "^1.80.0"
+ },
+ "publisher": "neonxp",
+ "license": "GPL-3.0-or-later",
+ "author": {
+ "name": "Alexander NeonXP Kiryukhin",
+ "email": "a.kiryukhin@mail.ru",
+ "url": "https://neonxp.ru/"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/neonxp/GoTools"
+ },
+ "icon": "icon.png",
+ "categories": [
+ "Programming Languages",
+ "Snippets",
+ "Other"
+ ],
+ "keywords": [
+ "go",
+ "golang"
+ ],
+ "contributes": {
+ "snippets": [
+ {
+ "language": "go",
+ "path": "./go.json"
+ }
+ ]
+ }
+}