Written by
beeplex
on
on
bash設定メモ
lsに色をつける
案外Macのデフォルト設定は気が利いていないのよねー。
プロファイルは「Pro」にしておいて、~/.bash_profile
に
export CLICOLOR=1
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
you can use this if you are using a black background:
の設定そのままですが。
プロンプトに色をつける
プロンプトも見づらいので…
~/.bash_profile
に
export PS1="\[\033[0;32m\]\u@\h:\[\033[0;36m\]\w\[\033[00m\]\$ "