Config File Collection
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

add_zshrc 384B

12345678910111213
  1. #!/bin/zsh
  2. #
  3. SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
  4. if [[ (-e ~/.zshrc || -e ~/.zshrc.d) ]]; then
  5. echo "A zsh configuration already exists (~/.zshrc or ~/.zshrc.d)"
  6. echo "Remove this configuration and start the script again"
  7. else
  8. echo "Creating base links"
  9. ln -vs $SCRIPTPATH/.zshrc ~/.zshrc
  10. ln -vs $SCRIPTPATH/.zshrc.d ~/.zshrc.d
  11. fi