2024-09-12 20:46:41 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
. ../common-script.sh
|
|
|
|
|
|
|
|
gitpath="$HOME/.local/share/neovim"
|
|
|
|
|
|
|
|
cloneNeovim() {
|
2024-09-14 13:07:22 +01:00
|
|
|
# Check if the dir exists before attempting to clone into it.
|
|
|
|
if [ -d "$gitpath" ]; then
|
|
|
|
rm -rf "$gitpath"
|
|
|
|
fi
|
2024-09-12 20:46:41 +01:00
|
|
|
mkdir -p "$HOME/.local/share" # Only create the dir if it doesn't exist.
|
|
|
|
cd "$HOME" && git clone https://github.com/ChrisTitusTech/neovim.git "$HOME/.local/share/neovim"
|
|
|
|
}
|
|
|
|
|
2024-09-17 03:10:02 +01:00
|
|
|
installNeovim() {
|
2024-09-17 04:14:49 +01:00
|
|
|
echo "Installing Neovim..."
|
2024-09-12 20:46:41 +01:00
|
|
|
case "$PACKAGER" in
|
|
|
|
pacman)
|
|
|
|
$ESCALATION_TOOL "$PACKAGER" -S --needed --noconfirm neovim ripgrep fzf python-virtualenv luarocks go shellcheck
|
|
|
|
;;
|
|
|
|
apt)
|
|
|
|
$ESCALATION_TOOL "$PACKAGER" install -y neovim ripgrep fd-find python3-venv luarocks golang-go shellcheck
|
|
|
|
;;
|
|
|
|
dnf)
|
|
|
|
$ESCALATION_TOOL "$PACKAGER" install -y neovim ripgrep fzf python3-virtualenv luarocks golang ShellCheck
|
|
|
|
;;
|
|
|
|
zypper)
|
|
|
|
$ESCALATION_TOOL "$PACKAGER" install -y neovim ripgrep fzf python3-virtualenv luarocks golang ShellCheck
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}" # The packages above were grabbed out of the original nvim-setup-script.
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
backupNeovimConfig() {
|
2024-09-17 04:11:04 +01:00
|
|
|
printf "%b\n" "${YELLOW}Backing up existing configuration files...${RC}"
|
2024-09-15 13:08:18 +01:00
|
|
|
if [ -d "$HOME/.config/nvim" ] && [ ! -d "$HOME/.config/nvim-backup" ]; then
|
|
|
|
cp -r "$HOME/.config/nvim" "$HOME/.config/nvim-backup"
|
|
|
|
fi
|
2024-09-12 20:46:41 +01:00
|
|
|
rm -rf "$HOME/.config/nvim"
|
|
|
|
}
|
|
|
|
|
|
|
|
linkNeovimConfig() {
|
2024-09-17 04:11:04 +01:00
|
|
|
printf "%b\n" "${YELLOW}Linking Neovim configuration files...${RC}"
|
2024-09-12 20:46:41 +01:00
|
|
|
mkdir -p "$HOME/.config/nvim"
|
|
|
|
ln -s "$gitpath/titus-kickstart/"* "$HOME/.config/nvim/" # Wild card is used here to link all contents of titus-kickstart.
|
|
|
|
}
|
|
|
|
|
|
|
|
checkEnv
|
|
|
|
checkEscalationTool
|
|
|
|
cloneNeovim
|
2024-09-17 03:10:02 +01:00
|
|
|
installNeovim
|
2024-09-12 20:46:41 +01:00
|
|
|
backupNeovimConfig
|
|
|
|
linkNeovimConfig
|