From 069fb765379bcb94a33699728cb92f0f44b03a77 Mon Sep 17 00:00:00 2001 From: gameloader Date: Tue, 13 Jun 2023 08:59:54 +0800 Subject: [PATCH] add install script --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 59bf016..6ceb4b1 100644 --- a/install.sh +++ b/install.sh @@ -21,11 +21,13 @@ elif [[ "$OS" == "debian" ]] || [[ "$OS" == "ubuntu" ]]; then sudo apt-get update sudo apt-get install -y unzip wget curl gzip tar ruby git cargo npm sudo apt-get install -y python3 python3-pip node + curl -LO https://github.com/neovim/neovim/releases/download/v0.9.1/nvim-linux64.deb # Added this line to download neovim deb package + sudo apt install ./nvim-linux64.deb # Added this line to install neovim deb package elif [[ "$OS" == "manjaro" ]]; then sudo pacman -Syu --noconfirm sudo pacman -S --noconfirm unzip wget curl gzip tar ruby git cargo npm sudo pacman -S --noconfirm python python-pip - sudo pacman -S --noconfirm go nodejs + sudo pacman -S --noconfirm go nodejs neovim fi # Add Go to PATH