add tmux plugins

This commit is contained in:
2025-06-14 21:08:44 +02:00
parent 0d90f23ce5
commit 048b69ae13
5 changed files with 48 additions and 12 deletions

28
setup
View File

@ -1,3 +1,4 @@
<<<<<<< HEAD
#!/usr/bin/env bash
set -e
@ -26,4 +27,29 @@ if [ ! -f "$PWD/.zshenv" ]; then
cp "$PWD/.zshenv.template" "$PWD/.zshenv"
fi
ln -sf "$PWD/.zshenv" "$HOME/.zshenv"
ln -sf "$PWD/.zshenv" "$HOME/.zshenv"
=======
#!/usr/bin/env bash
set -e
echo "[+] Cloning submodules..."
git submodule update --init --recursive
echo "[+] Creating Gitconfigs..."
(
for config in $PWD/.gitconfig.d/*.gitconfig; do
echo "[include]"
echo " path = $config"
done;
) > "$HOME/.gitconfig"
echo "[+] Creating symlinks..."
if [ ! -f "$PWD/.zshenv" ]; then
cp "$PWD/.zshenv.template" "$PWD/.zshenv"
fi
stow .
>>>>>>> ae6c9c8 (add tmux plugins)