14 lines
587 B
Bash
Executable file
14 lines
587 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Install oh-my-zsh"
|
|
echo oh-my-zsh
|
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
|
|
|
echo zsh-autosuggestions
|
|
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
|
|
|
echo zsh-syntax-highlighting
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
|
|
|
echo zsh-vi-mode
|
|
git clone https://github.com/jeffreytse/zsh-vi-mode \
|
|
$ZSH_CUSTOM/plugins/zsh-vi-mode
|