From cf58fa1f8a8d446b2f8e8ade7f811910d4da5f93 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Fri, 16 Jan 2026 11:54:09 +0000 Subject: [PATCH] fix nvim install url --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c7ff899..2e3eb25 100755 --- a/install.sh +++ b/install.sh @@ -21,7 +21,7 @@ install_neovim_linux() { tmp="$(mktemp -d)" trap 'rm -rf "$tmp"' RETURN - local url="https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz" + local url="https://github.com/neovim/neovim/releases/download/v0.11.5/nvim-linux-x86_64.tar.gz" curl -fL --retry 3 --retry-delay 1 -o "$tmp/nvim.tar.gz" "$url" sudo rm -rf /opt/nvim