mirror of
https://gitgud.io/Melon__Bread/gnu-plus-dotfiles.git
synced 2025-02-16 09:23:13 -05:00
12 lines
360 B
Bash
Executable File
12 lines
360 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Because Git submodule commands cannot operate without a work tree, they must
|
|
# be run from within $HOME (assuming this is the root of your dotfiles)
|
|
cd "$HOME"
|
|
|
|
echo "Init submodules"
|
|
yadm submodule update --recursive --init
|
|
|
|
echo "Installing tmux package manager (tpm)"
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|