Mac配置好用的系统终端

Mac配置好用的系统终端_第1张图片
终端

一、多色

1、找到系统配置文件

路径

 /Users/用户名/.bash_profile
2、添加以下代码
export CLICOLOR=1
export LSCOLORS=gxfxaxdxcxegedabagacad

注:详细讲解代码中的涵义:

CLICOLOR: 前景色和背景色的字符串合并值
LSCOLORS: 对于不同变量所采用的颜色方案,具体看如下表格:
a       black
b       red
c       green
d       brown
e       blue
f        magenta
g      cyan
h       light grey
A      bold black, usually shows up as dark grey
B       bold red
C      bold green
D      bold brown, usually shows up as yellow
E       bold blue
F       bold magenta
G     bold cyan
H      bold light grey; looks like bright white
x       default foreground or background
而文件类型列表如下:
1. directory
2. symbolic link
3. socket
4. pipe
5. executable
6. block special
7. character special
8. executable with setuid bit set
9. executable with setgid bit set
10. directory writable to others, with sticky bit
11. directory writable to others, without sticky
所以对照这张表就可以得知:

gxfxaxdxcxegedabagacad
就是对于directory而言,它的前景色就是: g(cyan),而背景色就是:x(默认的背景色).

二、自动补全,不区分大小写

1、打开终端,输入:
nano .inputrc
2、在里面粘贴上以下语句:
set completion-ignore-case on
set show-all-if-ambiguous on
TAB: menu-complete

Control+O,保存,重启终端,OK!

你可能感兴趣的:(Mac配置好用的系统终端)