自带的终端感觉不够好,iConsol 坑爹得在 vim 中不能按住上下左右,非得不停点。terminator 我下不到 mac 版的,求各位同学们推荐了。
不能按住和软件没有直接关系(比如使用 GUI 版的 MacVim 也是不能的),是 Lion 的一个特性,如果用不到这个蛋疼的特性,可以把它关了: defaults write -g ApplePressAndHoldEnabled -bool false
刚搜了下这个 包括 iterm3, oh my zsh 都装完挺喜欢的 http://forrst.com/posts/Oh_my_zsh_iTerm2_Nice_Colors_git_hg_suppo-1Ct
想问下关于 git 有什么 highlight 功能么?比如 git status 新加的显示绿色 删除的显示红色
Update: 搞错了,请忽略以下内容,参考 7 楼的。:)
#5 楼 @young4u_amy git highlight 用 git 自带的 completion,在 .bashrc 或 .bash_profile 中加入:
source /usr/local/etc/bash_completion.d/git-completion.bash
然后设置 PS,如:
export PS1='\h:\w$(__git_ps1 " (%s)") \u$ '
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
会在 ~/.gitconfig 里生成配置