2017-01-17 02:02:28 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
2017-02-25 02:47:06 +00:00
|
|
|
# Install pkgfile for command-not-found support
|
2017-10-03 08:40:07 +00:00
|
|
|
sudo pacman -S pkgfile --noconfirm --needed
|
2017-02-25 02:47:06 +00:00
|
|
|
sudo systemctl enable --now pkgfile-update.service
|
2017-10-03 08:40:07 +00:00
|
|
|
sudo pkgfile --update
|
2017-02-25 02:47:06 +00:00
|
|
|
|
2017-01-17 02:02:28 +00:00
|
|
|
dest="$HOME/.local/share"
|
|
|
|
mkdir -p "$dest"
|
|
|
|
cd "$dest"
|
|
|
|
|
|
|
|
git clone https://github.com/robbyrussell/oh-my-zsh.git oh-my-zsh
|
|
|
|
cd oh-my-zsh/plugins
|
|
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
|