aboutsummaryrefslogtreecommitdiff
path: root/docs/nvim_install_mac.sh
diff options
context:
space:
mode:
authorMichal Hanus <hanus.michal@divelit.cz>2024-03-02 18:49:55 +0100
committerMichal Hanus <hanus.michal@divelit.cz>2024-03-02 18:49:55 +0100
commitaab38f32e0a02e43565a554d0a76ff65636499b8 (patch)
treef3f00df05c63228c69a338e80fd0e7d02986e8cf /docs/nvim_install_mac.sh
parent99353a355321d68ef4fb3c26291084b23e8f4978 (diff)
crazyshitHEADmaster
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