From aab38f32e0a02e43565a554d0a76ff65636499b8 Mon Sep 17 00:00:00 2001 From: Michal Hanus Date: Sat, 2 Mar 2024 18:49:55 +0100 Subject: crazyshit --- docs/nvim_install_mac.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 docs/nvim_install_mac.sh (limited to 'docs/nvim_install_mac.sh') diff --git a/docs/nvim_install_mac.sh b/docs/nvim_install_mac.sh deleted file mode 100644 index ef698c8..0000000 --- a/docs/nvim_install_mac.sh +++ /dev/null @@ -1,20 +0,0 @@ -# This script is used to update Nvim on macOS -#!/bin/bash -set -eux - -wget https://github.com/neovim/neovim/releases/download/stable/nvim-macos.tar.gz - -if [[ ! -d "$HOME/tools/" ]]; then - mkdir -p "$HOME/tools" -fi - -# Delete existing nvim installation. -# For newer release, the directory name is nvim-macos -if [[ -d "$HOME/tools/nvim-macos" ]]; then - rm -rf "$HOME/tools/nvim-macos" -fi - -# Extract the tar ball -tar zxvf nvim-macos.tar.gz -C "$HOME/tools" - -rm nvim-macos.tar.gz -- cgit v1.2.3