[편집] vi 편집기 or ls 명령어 시 색깔 변경
vi 편집기의 색깔 변경은
$HOME/.vimrc 열어서 맨아래 다음 명령행을 입력한다.
color evening
만일 다른 색깔을 원하면 evening 대신 아래 다른것을 선택한다.
blue
darkblue
default
elflord
evening
koehler
morning
murphy
pablo
peachpuff
ron
shine
torte
zellner
이 색깔 테마 종류는 아래에서 확인할수 있다.
/usr/share/vim/vim61/colors
ls 하면 폴더의 종류및 파일의 종류에 따라 색깔이 다르게 나타난다. 그런대 기본이 어두워서 눈이 아픈경우가 종종있다.
이때는 ..
/etc/profile.d/colorls.sh
을 열어서 수정하면 된다.
난 보통 이렇게 쓴다.
# color-ls initialization
COLORS=/etc/DIR_COLORS
eval `dircolors –sh /etc/DIR_COLORS`
[ -f “$HOME/.dircolors” ] && eval `dircolors –sh $HOME/.dircolors` && COLORS=$HOME/.dircolors
[ -f “$HOME/.dir_colors” ] && eval `dircolors –sh $HOME/.dir_colors` && COLORS=$HOME/.dir_colors
if echo $SHELL |grep bash 2>&1 >/dev/null; then # aliases are bash only
if ! egrep -qi “^COLOR.*none” $COLORS &>/dev/null; then
alias ll=’ls -l –color=tty’
alias l.=’ls -d .[a-zA-Z]* –color=tty’
alias ls=’ls –color=tty’
else
alias ll=’ls -l’
alias l.=’ls -d .[a-zA-Z]*’
fi
fi
5 Responses
2imitator
1freebsd
… [Trackback]
[…] Read More here to that Topic: nblog.syszone.co.kr/archives/480 […]
… [Trackback]
[…] Find More here to that Topic: nblog.syszone.co.kr/archives/480 […]
… [Trackback]
[…] Read More here to that Topic: nblog.syszone.co.kr/archives/480 […]