correction version nvim debian

This commit is contained in:
2025-10-03 23:09:11 +02:00
parent a6596bbdde
commit 5e9d1a2c1c

View File

@@ -16,7 +16,11 @@ echo "Installation de Neovim sur $DISTRO..."
case "$DISTRO" in
"debian")
su -c "apt-get update"
su -c "apt-get install -y neovim git curl gcc"
su -c "apt-get install -y git curl gcc"
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz
su -c "rm -rf /opt/nvim-linux-x86_64"
su -c "tar -C /opt -xzf nvim-linux-x86_64.tar.gz"
su -c "/opt/nvim-linux-x86_64/bin/nvim /bin/nvim"
;;
"alpine")
su -c "apk update"