Files
dotfiles/setup.d/10-starship.sh
Vasili Svirydau cf075eb3cc .
2021-04-16 13:43:22 -07:00

10 lines
219 B
Bash
Executable File

#!/bin/bash
if ! test -x /usr/local/bin/starship; then
curl -fsSL https://starship.rs/install.sh | bash
fi
if ! grep starship ~/.bashrc > /dev/null; then
echo "eval \"\$(starship init bash)\"" >> ~/.bashrc
fi