diff --git a/.config/yadm/bootstrap b/.config/yadm/bootstrap new file mode 100755 index 0000000..2b3bd58 --- /dev/null +++ b/.config/yadm/bootstrap @@ -0,0 +1,15 @@ +#!/bin/bash + +system_type=$(uname -s) + +if [[ "$system_type" == "Linux" || "$system_type" == "Darwin" ]]; then + if command -v git >/dev/null 2>&1; then + if [[ ! -d "${HOME}/.config/nvim" ]]; then + git clone https://github.com/NvChad/starter ~/.config/nvim + fi + if [[ ! -d "${HOME}/.tmux/plugins/tpm" ]]; then + git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm + fi + fi +fi +