add tmux plugins
This commit is contained in:
28
setup
28
setup
@ -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)
|
||||
|
Reference in New Issue
Block a user