Created
September 8, 2020 15:26
-
-
Save anoriqq/63d15dabaab7066854124d9878193b66 to your computer and use it in GitHub Desktop.
🛫 [WIP] Setting Up a Unix Development Environment for @anoriqq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env sh | |
| set -u | |
| # helper | |
| STEP_COUNT=0 | |
| log() | |
| { | |
| MESSAGE=$1 | |
| STEP_COUNT=`expr $STEP_COUNT + 1` | |
| printf "\e[36m[step %d] %s\e[m\n" $STEP_COUNT $MESSAGE | |
| } | |
| log "初期情報" | |
| log "gitのセットアップ" | |
| log "zsh本体をセットアップ" | |
| log "zshプラグインをセットアップ" | |
| log "pureプロンプトをセットアップ" | |
| log "vim本体のセットアップ" | |
| log "vimプラグインのセットアップ" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment