From 7e33389f4a09bfae51db9d335d6df7b5ea7ece30 Mon Sep 17 00:00:00 2001 From: Richard Kuhnt Date: Tue, 2 Jan 2018 20:29:56 +0100 Subject: [PATCH] Add neovim version 0.2.2 (#1936) - Uses github releases - Added nvim-qt to bin property --- neovim.json | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 neovim.json diff --git a/neovim.json b/neovim.json new file mode 100644 index 0000000000..8ba358b2e6 --- /dev/null +++ b/neovim.json @@ -0,0 +1,43 @@ +{ + "version": "0.2.2", + "license": "https://github.com/neovim/neovim/blob/master/LICENSE", + "architecture": { + "64bit": { + "url": "https://github.com/neovim/neovim/releases/download/v0.2.2/nvim-win64.zip", + "hash": "66bab53ec0a8aff854921b6925630026649f3a49bb7913d19a4a602ffc138c92" + }, + "32bit": { + "url": "https://github.com/neovim/neovim/releases/download/v0.2.2/nvim-win32.zip", + "hash": "edbb17047f9a1bdc01acf965430ebbc61bd05a9d39668c9cc6961ea47f471c47" + } + }, + "suggest": { + "Visual Studio 2015 C++ redistributable": [ + "vcredist2015" + ] + }, + "homepage": "https://neovim.io/", + "bin": [ + "Neovim\\bin\\nvim.exe", + "Neovim\\bin\\nvim-qt.exe" + ], + "shortcuts": [ + [ + "Neovim\\bin\\nvim-qt.exe", + "Neovim" + ] + ], + "checkver": { + "github": "https://github.com/neovim/neovim" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/neovim/neovim/releases/download/v$version/nvim-win64.zip" + }, + "32bit": { + "url": "https://github.com/neovim/neovim/releases/download/v$version/nvim-win32.zip" + } + } + } +}