mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
12 lines
541 B
Bash
12 lines
541 B
Bash
set -e
|
|
ZDOTDIR="${ZDOTDIR:-$XDG_CONFIG_HOME/zsh}"
|
|
mkdir -p $ZDOTDIR/plugins
|
|
|
|
#plugins=(
|
|
# "zsh-autosuggestions"
|
|
# "zsh-syntax-highlighting"
|
|
# "zsh-history-substring-search"
|
|
#)
|
|
git clone --depth 1 https://github.com/zsh-users/zsh-autosuggestions.git $ZDOTDIR/plugins/zsh-autosuggestions
|
|
git clone --depth 1 https://github.com/zsh-users/zsh-syntax-highlighting.git $ZDOTDIR/plugins/zsh-syntax-highlighting
|
|
git clone --depth 1 https://github.com/zsh-users/zsh-history-substring-search.git $ZDOTDIR/plugins/zsh-history-substring-search
|