Added better tmux defaults, gitconfig, and vimrc with improved setup script
This commit is contained in:
12
setup.sh
12
setup.sh
@@ -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."
|
||||
|
||||
Reference in New Issue
Block a user