From ad59c0128c2fc71b46b34eb13c0ab60411b04594 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Thu, 16 May 2019 18:30:33 -0700 Subject: [PATCH] Neovim: Add nightly version. (#50) Add a new neovim-nightly.json to allow users to install the nightly builds of neovim, instead of just the stable/release builds. --- bucket/neovim-nightly.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 bucket/neovim-nightly.json diff --git a/bucket/neovim-nightly.json b/bucket/neovim-nightly.json new file mode 100644 index 0000000000..5cc8c515c0 --- /dev/null +++ b/bucket/neovim-nightly.json @@ -0,0 +1,30 @@ +{ + "homepage": "https://neovim.io/", + "description": "Run the latest master biuld of neovim", + "version": "nightly", + "license": { + "identifier": "Apache-2.0,MIT,Vim,Freeware(Node.js)", + "url": "https://github.com/neovim/neovim/blob/master/LICENSE" + }, + "architecture": { + "64bit": { + "url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip" + }, + "32bit": { + "url": "https://github.com/neovim/neovim/releases/download/nightly/nvim-win32.zip" + } + }, + "suggest": { + "vcredist": "extras/vcredist2015" + }, + "bin": [ + "Neovim\\bin\\nvim.exe", + "Neovim\\bin\\nvim-qt.exe" + ], + "shortcuts": [ + [ + "Neovim\\bin\\nvim-qt.exe", + "Neovim" + ] + ] +}