forked from cohabit/server_config
10 lines
386 B
Bash
10 lines
386 B
Bash
# Setup zsh
|
|
cp -a ./zsh/zsh/. /root
|
|
chsh -s /usr/bin/zsh
|
|
|
|
# Install zsh-autosuggestions plugin
|
|
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
|
|
|
# Install zsh-syntax-highlighting
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|