/zsh

My zsh scripts

Primary LanguageShellMIT LicenseMIT

Install

wget -O - https://gitlab.ogbase.net/cupric/zsh/-/raw/master/init.sh | bash

Install zsh, oh-my-zsh, curl, and fzf first

sudo apt install -y zsh git curl fzf

Run init script (this is enough for a full install)

./init.sh

Remove pre-configured files

rm -fdr .oh-my.zsh
mv zsh .zsh
rm .zshrc

Link new config file

ln -s .zsh/.zshrc .zshrc

Get Antigen

mkdir ~/.zsh/antigen
cd ~/.zsh/antigen
curl -L git.io/antigen > antigen.zsh

Get spaceship

curl -sS https://starship.rs/install.sh | sh

Initialize

exec zsh

Fedora install fzf

sudo dnf install dnf-plugins-core
sudo dnf copr enable lehrenfried/fzf
sudo dnf install fzf -y

Change shell to zsh

chsh -s /bin/zsh

Update

cd ~/.zsh && git pull && exec zsh

or

zgu