Slim down default install

Since its all just yay, we dont need to load as much upfront
This commit is contained in:
David Heinemeier Hansson
2025-06-02 20:56:40 +02:00
parent 21c2bf4e41
commit b2570ca811
4 changed files with 9 additions and 15 deletions

View File

@ -3,3 +3,10 @@ cp -R ~/.local/share/omarchy/config/* ~/.config/
# Use default bashrc from Omarchy
echo "source ~/.local/share/omarchy/default/bash/rc" >~/.bashrc
# Set common git aliases
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global pull.rebase true