美文网首页
mac终端使用Item2无法显示颜色的解决方法

mac终端使用Item2无法显示颜色的解决方法

作者: Fidding | 来源:发表于2018-04-18 18:03 被阅读0次

    item2是mac,linux下非常好用的一款终端机,可自行配置主题并支持tab等多种功能。

    还在用单调的item吗?不妨试试item2吧!

    安装完后发现item2终端是没有颜色的(白底黑字),究其原因是Mac终端机预设是没有颜色区分的,而对于开发者来说,颜色是多么重要(视觉疲劳有木有)!

    那么如果想要像Linux一样有颜色,那么需要自行设定~/.bash_profile文件(没有的话自行创建)。

    打开.bash_profile文件,添加配置如下

    # enables color in the terminal bash shell
    export CLICOLOR=1
    # sets up the color scheme for list
    export LSCOLORS=ExFxCxDxBxegedabagacad
    # enables color for iTerm
    export TERM=xterm-color
    export TERM="xterm-color"
    PS1='\[\e[0;33m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\]:\[\e[0;34m\]\w\[\e[0m\]\$ '
    # sets up proper alias commands when called
    alias ls='ls -vG'
    alias ll='ls -al'
    alias la='ls -a'
    alias vi='vim'
    

    新增完重新打开item2终端机,就会出现漂亮的颜色了。

    原文地址:http://www.fidding.me/article/27

    happy coding!

    相关文章

      网友评论

          本文标题:mac终端使用Item2无法显示颜色的解决方法

          本文链接:https://www.haomeiwen.com/subject/tilbkftx.html