diff options
| author | 2025-05-02 16:05:47 +0300 | |
|---|---|---|
| committer | 2025-05-02 16:05:47 +0300 | |
| commit | 446d2716e7bb83e58fb516ec27e5c7750069e98c (patch) | |
| tree | 3e2bdee9d79cf8495fde84a559d2b05bf7ca45b8 /nvim/snippets/package.json | |
| parent | Сделал кейбинды (diff) | |
| download | dotfiles-446d2716e7bb83e58fb516ec27e5c7750069e98c.tar.gz dotfiles-446d2716e7bb83e58fb516ec27e5c7750069e98c.tar.bz2 dotfiles-446d2716e7bb83e58fb516ec27e5c7750069e98c.tar.xz dotfiles-446d2716e7bb83e58fb516ec27e5c7750069e98c.zip | |
Перешел на lazy nvim, навел порядок в плагинах
Diffstat (limited to '')
| -rw-r--r-- | nvim/snippets/package.json | 38 |
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" + } + ] + } +} |
