Chocolatey package for the distribution of released versions of neovim
- nuspec: update
version
tag. - nuspec: update
release notes
tag. - chocolateyinstall.ps1: update
$url64
- chocolateyinstall.ps1: update
checksum64
- Install chocolatey
- From command line
choco install neovim
- Or
choco install neovim --pre
- Instructions to setup the container, where
choco-neovim
is this repo.
docker pull chocolatey/choco
docker run -ti --rm -v $PWD/choco-neovim:/data chocolatey/choco:latest /bin/bash
- Always pack after making any changes
choco pack
choco install neovim --pre -s '%cd%' -fy
choco uninstall neovim --pre -s '%cd%' -fy
choco install neovim --source . -fy
choco uninstall neovim --source . -fy
choco apikey --key <key> --source https://push.chocolatey.org
choco push <package> --source https://push.chocolatey.org
# Or in one command
choco push <package> --api-key <key> --source https://push.chocolatey.org