15 lines
550 B
Bash
15 lines
550 B
Bash
#!/bin/zsh
|
|
|
|
#starship setup
|
|
echo "Installing Starship"
|
|
curl -sS https://starship.rs/install.sh | sh
|
|
|
|
#ohmyzsh setup
|
|
echo "Installing oh my zsh"
|
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
|
|
|
#ohmyzsh plugins
|
|
echo "Installing oh my zsh plugins"
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
|
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|