iTerm2 颜色生效配置
iTerm2 颜色生效配置
在导入并应用完颜色方案之后,通过命令vim ~/.bash_profile 或open ~/.bash_profile编辑文件,添加以下内容,之后source ~/.bash_profile来应用文件修改。
CLICOLOR=1
LSCOLORS=gxfxcxdxbxegedabagacad
exportPS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ '
exportTERM=xterm-color
这样之后ls还是不能显示颜色,需要指定ls -G才能显示颜色,这里我们可以为它配置别名,通过命令vim ~/.bashrc或open ~/.bashrc编辑文件,添加以下内容,之后source ~/.bashrc来应用修改。
aliasll='ls -lG'
aliasls='ls -G'
保存后还需对 .bash_profile 进行一些设置。打开 .bash_profile 文件,添加以下内容。
if[ -f ~/.bashrc ];then
source~/.bashrc
fi
原因是对于Mac系统,每次开机运行时是执行 .bash_profile 文件,而不会执行 .bashrc 文件,所以在 .bash_profile 文件中添加上述内容,让Mac在执行 .bash_profile 时让 .bashrc 文件生效。
或者直接将shell改为zsh,便可以直接使用对应的配色了
克隆这个项目到本地(前提是你得有装git)
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
创建一个zsh的配置文件 注意:如果你已经有一个~/.zshrc文件的话,建议你先做备份。使用以下命令
cp ~/.zshrc ~/.zshrc.orig
然后开始创建zsh的配置文件
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
设置zsh为你的默认的shell
chsh -s /bin/zsh
重启并开始使用你的zsh (打开一个新的终端窗口便可…)
至此,大功告成。
通过vim ~/.zshrc 来编辑你的配置文件,例如把(~/.bash_prorile或者~/.profile等)给拷贝到zsh的配置文件~/.zshrc里,因为zsh兼容bash,所以你大可放心把bash的配置粘贴到~/.zshrc底部便可。
转载于:https://my.oschina.net/u/3157630/blog/808621