Added bootstrap to install tmux-tpm and nvchat
This commit is contained in:
parent
4bacf7f45e
commit
9ace0d86b6
1 changed files with 15 additions and 0 deletions
15
.config/yadm/bootstrap
Executable file
15
.config/yadm/bootstrap
Executable file
|
@ -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
|
||||
|
Loading…
Reference in a new issue