Files
miasma-os/files/justfiles/configure-zsh.just
2026-04-08 07:08:10 +10:00

16 lines
791 B
Plaintext

setup-zsh:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting
git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocomplete
{echo 'plugins=(git'
echo 'zsh-autosuggestions'
echo 'zsh-syntax-highlighting'
echo 'fast-syntax-highlighting'
echo 'zsh-autocomplete'
echo ')'
} >> ~/.zshrc