aboutsummaryrefslogtreecommitdiff
path: root/docs/nvim_install_mac.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docs/nvim_install_mac.sh')
-rw-r--r--docs/nvim_install_mac.sh20
1 files changed, 0 insertions, 20 deletions
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