Config File Collection
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

add_tmux 321B

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