Terminal 配置

Ubuntu 默认紫色主题 配色方案参数

.minttyrc

BackgroundColour=48,10,36
ForegroundColour=211,215,207
CursorColour=255,255,255
Black=46,52,54
BoldBlack=85,87,83
Red=202,0,17
BoldRed=236,34,49
Green=80,154,28
BoldGreen=140,226,68
Yellow=195,159,33
BoldYellow=251,233,93
Blue=54,102,162
BoldBlue=116,159,205
Magenta=116,80,122
BoldMagenta=172,127,167
Cyan=24,152,153
BoldCyan=64,227,225
White=211,215,207
BoldWhite=238,238,236
.bash_profile
alias vi='vim'
alias ll='ls -alhG --color=auto'
alias tar='tar --backup=numbered'
alias mv='mv -i'
alias ls='ls --color'

export PS1='\[\033[01;35m\]\t \[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
export HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S `whoami` "
export LANG="en_US.utf8"

你可能感兴趣的:(Terminal 配置)