1

nvim appimage script

This commit is contained in:
Evan Pratten 2023-10-28 14:11:51 -04:00
parent d1af95e3ae
commit 918d32b6fa

View File

@ -0,0 +1,9 @@
#! /bin/sh
set -ex
# Download the appimage to .local/bin
mkdir -p ~/.local/bin
wget https://github.com/neovim/neovim/releases/download/stable/nvim.appimage -O ~/.local/bin/nvim
# Make it executable
chmod +x ~/.local/bin/nvim