From 8c084143c035f4e8907bf9a4c8cbfe5406e63eef Mon Sep 17 00:00:00 2001 From: Ted Kulp Date: Sun, 15 Oct 2023 11:19:46 -0400 Subject: [PATCH] chore: fixing stuff --- .config/yadm/bootstrap | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.config/yadm/bootstrap b/.config/yadm/bootstrap index c8727df..c72f6b8 100755 --- a/.config/yadm/bootstrap +++ b/.config/yadm/bootstrap @@ -1,17 +1,18 @@ #!/bin/bash -cd $HOME +cd $HOME # What are we packing? system_type=$(uname -s) -# Install submodules -echo "Init submodules" -yadm submodule update --recursive --init +# Because submodules suck... +git clone https://github.com/gpakosz/.tmux.git $HOME/.tmux +mkdir -p $HOME/.config +git clone git@github.com:tedkulp/lazyvim $HOME/.config/nvim # Link in our tmux config if [ ! -f "$HOME/.tmux.conf" ]; then - ln -s -f .tmux/.tmux.conf + ln -s -f .tmux/.tmux.conf fi # Wrapping up