You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
395 B
Bash
14 lines
395 B
Bash
TMP_DIR="tmp_nvim"
|
|
mkdir -p ${TMP_DIR}
|
|
|
|
NVIM_ASSET_NAME=nvim-linux-x86_64
|
|
NVIM_DOWNLOAD_URL=https://github.com/neovim/neovim/releases/download/nightly/${NVIM_ASSET_NAME}.tar.gz
|
|
|
|
# Download latest nightly release of Neovim
|
|
wget --output-document=/dev/stdout $NVIM_DOWNLOAD_URL | \
|
|
tar --directory ${TMP_DIR} -xzf /dev/stdin
|
|
|
|
sudo rm -rf ~/neovim
|
|
sudo mv ${TMP_DIR}/${NVIM_ASSET_NAME} ~/neovim
|
|
|