fixed zsh install order
parent
092d0b24a6
commit
e72b8f7198
|
|
@ -78,6 +78,24 @@ ln -s ~/Dotfiles/micro/ ~/.config/micro
|
|||
ln -s ~/Dotfiles/yazi/ ~/.config/yazi
|
||||
ln -s ~/Dotfiles/spotify-tui/config.yml ~/.config/spotify-tui/config.yml
|
||||
|
||||
#starship setup
|
||||
echo "Installing Starship"
|
||||
curl -sS https://starship.rs/install.sh | sh
|
||||
|
||||
#ohmyzsh setup
|
||||
echo "Installing oh my zsh"
|
||||
zsh -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
|
||||
|
||||
#zsh setup
|
||||
echo "Setting up zsh"
|
||||
chsh -s /usr/bin/zsh
|
||||
#homectl update --shell=/usr/bin/zsh
|
||||
|
||||
#final reboot
|
||||
echo "Press any key to reboot"
|
||||
read
|
||||
|
|
|
|||
Loading…
Reference in New Issue