ターミナル(Cmder)
概要
インストール
test -f ~/.profile && . ~/.profile
test -f ~/.bashrc && . ~/.bashrc
export LANG=ja_JP.UTF-8parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
alias ls='ls --show-control-chars -F --color --ignore={NTUSER.*,ntuser.*}'
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "Last updated
Was this helpful?