From 000d33b961824ab5003856cba9e632d6fd1de9d5 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 28 Oct 2023 13:49:34 -0400 Subject: [PATCH] Add a script for installing neovim from source --- configs/scripts/install-nvim-from-source | 39 ++++++++++++++++++++++++ configs/shells/bash/macros.sh | 1 + 2 files changed, 40 insertions(+) create mode 100755 configs/scripts/install-nvim-from-source diff --git a/configs/scripts/install-nvim-from-source b/configs/scripts/install-nvim-from-source new file mode 100755 index 0000000..c424413 --- /dev/null +++ b/configs/scripts/install-nvim-from-source @@ -0,0 +1,39 @@ +#! /bin/bash +set -e + +echo "You have chosen to isntall neovim from source." + +# If ~/src/neovim doesn't exist, clone a fresh copy +cd ~/src +if [ ! -d ~/src/neovim ]; then + git clone https://github.com/neovim/neovim +fi +cd neovim + +# Handle branch checkout +echo "Do you want to switch to the stable branch? (y/n)" +read -r -n 1 response +if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]; then + git checkout stable +fi + +# Figure out the appropriate make command. +if [ -x "$(command -v gmake)" ]; then + MAKE_CMD=gmake +else + MAKE_CMD=make +fi + +# Determine the install prefix +NVIM_INSTALL_PREFIX=${NVIM_INSTALL_PREFIX:-$HOME/.local} + +# Build +echo "Building neovim..." +$MAKE_CMD CMAKE_BUILD_TYPE=Release CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$NVIM_INSTALL_PREFIX" + +# Install +echo "Would you like to install neovim? (y/n)" +read -r -n 1 response +if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]; then + $MAKE_CMD install +fi diff --git a/configs/shells/bash/macros.sh b/configs/shells/bash/macros.sh index 0f5e54b..200e0ef 100644 --- a/configs/shells/bash/macros.sh +++ b/configs/shells/bash/macros.sh @@ -19,6 +19,7 @@ alias sheridan-rdp='firefox --new-window "ext+container:name=College&url=https:/ alias git-diff-nvim="git diff | nvim -R -d -c 'set filetype=diff' -" alias yk-totp="ykman oath accounts code" alias flush-dns-cache="sudo systemd-resolve --flush-caches" +alias which-ls="ls -la $(which ls)" # WHOIS macros alias whois-afrinic="whois -h whois.afrinic.net"