ayumu_aoの日記

SIerから事業会社に転職したエンジニアが技術についてや組織論、本の話、今までの体験談などなどを個人的に垂れ流しています。

iTerm初期設定メモ

自分が気持ちよくiTermを使うための環境構築をマシン変えるごとに忘れそうになるのでめもめも

brew install fish
sudo sh -c "echo `which fish` >>/etc/shells"
chsh -s `which fish` # 再ログインする

# installing oh-my-fish
curl -L http://get.oh-my.fish | fish
omf install bobthefish
echo "set -g theme_powerline_fonts no" >>.config/fish/config.fish

# installing tmux
brew install tmux

# installing peco
curl -sSL https://github.com/peco/peco/releases/download/v0.4.5/peco_darwin_amd64.zip | bsdtar -xf - -C /tmp
sudo mv /tmp/peco_darwin_amd64/peco /usr/local/bin
echo "alias p peco" >>.config/fish/config.fish

# installing the fuck
brew install thefuck
echo 'eval (thefuck --alias | tr "\n" ";")' >>.config/fish/config.fish

# installing jq
brew install jq

source .config/fish/config.fish```