dootfiles/.config/yadm/bootstrap.d/shell

23 lines
733 B
Text
Raw Normal View History

2024-03-13 17:26:09 -04:00
#!/bin/bash
if [[ ! -r "$HOME/.local/share/blesh/ble.sh" ]]; then
echo "+ ble.sh"
2024-05-06 18:26:09 -04:00
git clone --recursive --depth 1 --shallow-submodules https://github.com/akinomyoga/ble.sh.git
2024-03-13 17:26:09 -04:00
make -C ble.sh install PREFIX="$HOME/.local"
rm -rf ble.sh
fi
if [[ ! -d "$HOME/.tmux/plugins" ]]; then
echo "+ TMux Plugin Manager"
mkdir -p "$HOME/.tmux/plugins"
git clone https://github.com/tmux-plugins/tpm "$HOME/.tmux/plugins/tpm"
fi
if [[ ! -d "$HOME/.config/nvim" ]]; then
echo "+ NvChad"
git clone https://github.com/NvChad/starter ~/.config/nvim
nvim --headless "+Lazy! sync" +qa
nvim --headless "+MasonInstallAll" +qa
#echo "! Run :MasonInstallAll while running nvim to finish NvChat install"
2024-03-13 17:26:09 -04:00
fi