得之我幸 失之我命

when someone abandons you,it is him that gets loss because he lost someone who truly loves him but you just lost one who doesn’t love you.

配置 macOS 的好用终端

配置 iterm2 + zsh + oh my zsh

  1. iterm2
    直接官网下载

  2. zsh

    1
    $ brew install zsh
  3. oh my zsh
    github 下载

附上一个 .zshrc 配置,用于终端网络加速

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# function for proxy https and http request in terminal
# you should install shadowsocksX-NG
# more info: https://github.com/shadowsocks/ShadowsocksX-NG
function proxy_status() {
if [[ "$http_proxy" == "" ]] ; then
echo -e "proxy is off."
else
echo -e "proxy is on."
fi
}

function proxy_off(){
unset http_proxy
unset https_proxy
}

function proxy_on() {
export http_proxy=http://127.0.0.1:1087
export https_proxy=http://127.0.0.1:1087
}

be slow to promise and quick to perform.