install-zsh/zsh_install.sh

18 lines
496 B
Bash
Raw Normal View History

2022-08-30 12:11:37 +02:00
#!/bin/bash
2022-08-30 12:15:32 +02:00
if [ -f /etc/rocky-release ]; then
sudo dnf install zsh git curl
elif [ -f /etc/arch-release ]; then
sudo pacman -S zsh git curl
fi
2022-08-30 12:11:37 +02:00
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
sed -i 's/ZSH_THEME=.*/ZSH_THEME="bureau"/' ~/.zshrc
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
sed -i 's/plugins=(git)/plugins=(\ngit\nzsh-autosuggestions\n)/' ~/.zshrc
zsh