diff --git a/.vim/undodir/%home%rmaco%projects%setup%install.sh b/.vim/undodir/%home%rmaco%projects%setup%install.sh index 1ed1d5a..e20012a 100644 Binary files a/.vim/undodir/%home%rmaco%projects%setup%install.sh and b/.vim/undodir/%home%rmaco%projects%setup%install.sh differ diff --git a/install.sh b/install.sh index 08b0026..e95a687 100644 --- a/install.sh +++ b/install.sh @@ -16,11 +16,10 @@ else ~/projects/homefull-gui fi -echo "----- Downloading NVIM -----" if [[ "$OSTYPE" == "linux"* ]]; then echo "----- Linux-Gnu detected -----" nvim_path="/opt/nvim-linux64" - echo "Downloading nvim" + echo "----- Downloading NVIM -----" curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz sudo rm -rf /opt/nvim echo "Copying NVIM to /opt/nvim-linux64" @@ -34,6 +33,7 @@ elif [[ "$OSTYPE" == "darwin"* ]]; then if [ -d "$HOME/Applications/nvim" ]; then echo "[Skipped] NVIM already installed" else + echo "----- Downloading nvim -----" curl -LO https://github.com/neovim/neovim/releases/download/nightly/nvim-macos-arm64.tar.gz tar xzf nvim-macos-arm64.tar.gz mv nvim-macos-arm64 $nvim_path @@ -43,6 +43,7 @@ elif [[ "$OSTYPE" == "msys"* ]]; then if [ "$env:Path" == "*Neovim*" ]; then echo "[Skipped NVIM already installed" else + echo "----- Downloading nvim -----" curl -o nvim-win64.msi https://github.com/neovim/neovim/releases/latest/download/nvim-win64.msi ./nvim-win64.msi /passive fi