You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
783 B
27 lines
783 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
3 years ago
|
# Install ohmyzsh
|
||
|
if [ -d "$ZSH" ]; then
|
||
|
echo "ohmyzsh is installed"
|
||
|
else
|
||
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended
|
||
|
fi
|
||
|
|
||
|
|
||
|
export PLUGINS=~/.oh-my-zsh/custom/plugins
|
||
|
export THEMES=~/.oh-my-zsh/themes
|
||
|
|
||
3 years ago
|
mkdir -p $PLUGINS
|
||
|
mkdir -p $THEMES
|
||
|
|
||
|
ln -sf $DOTFILES/config/.zshrc ~/.zshrc
|
||
|
|
||
3 years ago
|
# Install zsh-histdb
|
||
|
git -C $PLUGINS/zsh-histdb pull || git clone https://github.com/larkery/zsh-histdb $PLUGINS/zsh-histdb
|
||
|
|
||
|
# Install zsh-autosuggestions
|
||
|
git -C $PLUGINS/zsh-autosuggestions pull || git clone https://github.com/zsh-users/zsh-autosuggestions $PLUGINS/zsh-autosuggestions
|
||
|
|
||
|
# Install Powerlevel10k
|
||
|
git -C $THEMES/powerlevel10k pull || git clone https://github.com/romkatv/powerlevel10k $THEMES/powerlevel10k
|