Improve gitconfig and install script

This commit is contained in:
Tim
2025-03-04 12:01:27 +01:00
parent 22fe5fefc7
commit a27ed0a820
3 changed files with 19 additions and 2 deletions

View File

@ -11,3 +11,11 @@ git clone https://github.com/agkozak/zsh-z ~/.oh-my-zsh/custom/plugins/zsh-z
./solve-stow.sh zsh
chsh -s $(which zsh)
echo "Do you wish to install lazygit?"
select yn in "Yes" "No"; do
case $yn in
Yes ) ./install.lazygit.sh; break;;
No ) exit;;
esac
done