64 lines
1.2 KiB
Bash
64 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
deps=(
|
|
rg # ripgrep
|
|
lazygit
|
|
gdu
|
|
btm # bottom
|
|
python
|
|
node
|
|
tree-sitter
|
|
)
|
|
|
|
# TODO: make sure tree-sitter is rust version?
|
|
|
|
is-cmd() {
|
|
if [ -x "$(command -v "$1")" ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
install-astronvim() {
|
|
echo "Installing astronvim"
|
|
|
|
if [[ -d ~/.config/nvim ]]; then
|
|
echo "backing up old nvim config"
|
|
mv ~/.config/nvim ~/.config/nvim.bak-"$(date +'%s')"
|
|
fi
|
|
|
|
if [[ -d ~/.local/share/nvim ]]; then
|
|
echo "backing up old nvim directory"
|
|
mv ~/.local/share/nvim ~/.local/share/nvim-"$(date +'%s')"
|
|
mkdir ~/.local/share/nvim
|
|
fi
|
|
|
|
git clone https://github.com/AstroNvim/AstroNvim ~/.config/nvim
|
|
|
|
# echo "add brute force method of ignoring version complaints"
|
|
# git -C "$HOME/.config/nvim" am "$HOME/.config/astronvim/patches/0001-remove-version-check.patch"
|
|
|
|
nvim --headless -c 'autocmd User PackerComplete quitall'
|
|
}
|
|
|
|
echo "Checking for optional dependencies"
|
|
|
|
check-dep() {
|
|
if is-cmd "$1"; then
|
|
printf '%15s \033[32m%s\033[0m\n' "$1" 'yes'
|
|
else
|
|
printf '%15s \033[31m%s\033[0m\n' "$1" 'no'
|
|
fi
|
|
}
|
|
|
|
install-astronvim
|
|
|
|
echo
|
|
echo "checking for dependencies"
|
|
|
|
for dep in "${deps[@]}"; do
|
|
check-dep "$dep"
|
|
done
|