OS X 下个性化开发环境的搭建
本人的几轮开发环境配置都是在凌乱中完成的,是时候做一整理了。
安装iTerm2
没什么话好多说。这个终端应用棒棒的,尤其是卷帘般的可随时唤出的Hotkey Window。别忘了Make iTerm2 default Term
。Homebrew
Homebrew installs the stuff you need that Apple didn’t.
ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
A package manager with a handy command brew install
that works just like apt-get install
in Linux.
- Fish shell
A user-friendly command line shell.
git clone git://github.com/fish-shell/fish-shell.git
cd fish-shell
autoconf (try autoreconf if any error occurs)
./configure
make [gmake on BSD]
sudo make install
To make it default shell:
sudo nano /etc/shells
Something to be added(optional).
chsh -s /usr/local/bin/fish
- Oh-My-Fish
Oh My Fish provides core infrastructure to allow you to install packages which extend or modify the look of your shell.
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install
fish install
Favourable themes and plugins are reachable.
- Powerline fonts
Non-ASCII fonts need to be displayed correctly.
OS X 下个性化开发环境的搭建