summaryrefslogtreecommitdiffstats
path: root/other/zsh/setup.sh
blob: 564936aaa8f21649ff34509a3e30fabe85aa72ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#! /bin/bash

# clone my prezto fork
git clone https://git.aminb.org/prezto $HOME/.zprezto

# setup the symlinks
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
  ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done