Skip to content

Instantly share code, notes, and snippets.

@musou1500
Last active November 17, 2016 02:34
Show Gist options
  • Save musou1500/57d5e6f2fa9b1851dd53df1ba365cf33 to your computer and use it in GitHub Desktop.
Save musou1500/57d5e6f2fa9b1851dd53df1ba365cf33 to your computer and use it in GitHub Desktop.
#!/usr/bin/env zsh
cat << 'EOT' > $HOME/.zshenv
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
EOT
. $HOME/.zshenv
if [ ! -d $ZDOTDIR ]; then
git clone "https://github.com/musou1500/zsh-config" $ZDOTDIR
. $ZDOTDIR/.zshrc
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment