MacBook設置終端顏色,補全忽略大小寫,設置命令別名alias,設置vim,設置顯示git分支

一、啓用終端顏色linux

修改配置文件
$ vim .bash_profile

#enables colorin the terminal bash shell export
export CLICOLOR=1

#sets up thecolor scheme for list export
export LSCOLORS=gxfxcxdxbxegedabagacad

#sets up theprompt color (currently a green similar to linux terminal)
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ '

#enables colorfor iTerm
export TERM=xterm-color

載入配置
$ source .bash_profile

其中LSCOLORS的值表示的含義以下:git

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(default)。

二、系統自帶的目錄都是以大寫開頭,切換起來不是很方便,要是補全能忽略大小寫就方便不少了。shell

在家目錄下新建.inputrc文件
$ vim .inputrc

set completion-ignore-case on
set show-all-if-ambiguous on
TAB: menu-complete

這裏直接載入會報錯,須要重啓終端生效。

三、mac系統沒有自帶ll命令別名,這應該是最經常使用的命令了,必須加上。vim

$ vim .bash_profile

#alias
alias ll="ls -lG"

$ source .bash_profile

四、設置vim,啓用語法高亮bash

$ vim .vimrc

syntax on          #啓用語法高亮
set ruler          #啓用標尺,即顯示光標當前位置的座標

五、設置顯示git分支,其實在這一點上zsh能夠實現很是強大的git提示功能,這裏只是顯示分支名。socket

$ vim .bash_profile

#display git branch in PS1
find_git_branch () {

local dir=. head

until [ "$dir" -ef / ]; do
    if [ -f "$dir/.git/HEAD" ]; then
        head=$(< "$dir/.git/HEAD")
        if [[ $head = ref:\ refs/heads/* ]]; then
            git_branch="(${head#*/*/})"
        elif [[ $head != '' ]]; then
            git_branch=" → (detached)"
        else
            git_branch=" → (unknow)"
        fi
        return
    fi
    dir="../$dir"
done

git_branch=''
}

PROMPT_COMMAND="find_git_branch; $PROMPT_COMMAND"

black=$'\[\e[1;30m\]'
red=$'\[\e[1;31m\]'
green=$'\[\e[1;32m\]'
yellow=$'\[\e[1;33m\]'
blue=$'\[\e[1;34m\]'
magenta=$'\[\e[1;35m\]'
cyan=$'\[\e[1;36m\]'
white=$'\[\e[1;37m\]'
normal=$'\[\e[m\]'

PS1="$green\u$white@$green\h:$cyan\w$yellow\$git_branch$normal\$ "

$ source .bash_profile

設置完後效果以下ui

相關文章
相關標籤/搜索