mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 13:39:41 +00:00
2ab6c1670b
* Added nvim version check * Moved the check to a func Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com> --------- Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com>
70 lines
2.2 KiB
Bash
Executable File
70 lines
2.2 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../../common-script.sh
|
|
|
|
gitpath="$HOME/.local/share/neovim"
|
|
|
|
checkNeovimVer() {
|
|
# lazy.nvim requires nvim >= 0.8.0
|
|
nvim_version=$(nvim --version | head -n 1 | awk '{print $2}')
|
|
if [ "$(printf "%s\n" "$nvim_version" "0.8.0" | sort -V | head -n 1)" != "0.8.0" ]; then
|
|
printf "%b\n" "${RED}Neovim version $nvim_version not supported.${RC}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
cloneNeovim() {
|
|
# Check if the dir exists before attempting to clone into it.
|
|
if [ -d "$gitpath" ]; then
|
|
rm -rf "$gitpath"
|
|
fi
|
|
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"
|
|
}
|
|
|
|
installNeovim() {
|
|
if ! command_exists neovim ripgrep git fzf; then
|
|
printf "%b\n" "${YELLOW}Installing Neovim...${RC}"
|
|
case "$PACKAGER" in
|
|
pacman)
|
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm neovim ripgrep fzf python-virtualenv luarocks go shellcheck git
|
|
;;
|
|
apt-get|nala)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y neovim ripgrep fd-find python3-venv luarocks golang-go shellcheck git
|
|
;;
|
|
dnf)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y neovim ripgrep fzf python3-virtualenv luarocks golang ShellCheck git
|
|
;;
|
|
zypper)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y neovim ripgrep fzf python3-virtualenv luarocks golang ShellCheck git
|
|
;;
|
|
*)
|
|
printf "%b\n" "${RED}Unsupported package manager: ""$PACKAGER""${RC}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
fi
|
|
}
|
|
|
|
backupNeovimConfig() {
|
|
printf "%b\n" "${YELLOW}Backing up existing configuration files...${RC}"
|
|
if [ -d "$HOME/.config/nvim" ] && [ ! -d "$HOME/.config/nvim-backup" ]; then
|
|
cp -r "$HOME/.config/nvim" "$HOME/.config/nvim-backup"
|
|
fi
|
|
rm -rf "$HOME/.config/nvim"
|
|
}
|
|
|
|
linkNeovimConfig() {
|
|
printf "%b\n" "${YELLOW}Linking Neovim configuration files...${RC}"
|
|
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
|
|
installNeovim
|
|
checkNeovimVer
|
|
cloneNeovim
|
|
backupNeovimConfig
|
|
linkNeovimConfig
|