Added better tmux defaults, gitconfig, and vimrc with improved setup script

This commit is contained in:
2023-02-16 17:00:39 -08:00
parent d5f5cf2ef6
commit 0e39019e63
4 changed files with 46 additions and 12 deletions

View File

@@ -13,9 +13,19 @@ fi
cat bash_profile_ext >> $HOME/.bash_profile
if [ ! "$(ls -A ./vim/bundle/taglist)" ]; then
echo "Pulling tags, since you're lazy..."
git submodule init
git submodule update
fi
copy_list=(ctags dircolors gitconfig inputrc tmux.conf vim vimrc Xdefaults)
for config in ${copy_list[@]}; do
cp -r "$config" $HOME/."$config"
cp -fr "$config" $HOME/."$config"
done
echo "=========================================================="
echo "= Be sure to adjust the Git user/email as necessary!!!!! ="
echo "=========================================================="
echo ""
echo "Please log out and log back in for changes to take effect."