この日記にはツッコミを入れられます。 ツッコミを入れたい日付をクリックすると、フォームが現れます。
xreaでtDiaryを使う方法はxrea.com で tDiary を使う方法やインストールメモやXREA + tDiary + Namazuをどうぞ。
if [ "$OSTYPE" = "cygwin" -a /dev/conin = "$TTY" ]
then
alias ls='ls --color=no'
elif [ "$TERM" = "dumb" -o "$TERM" = "emacs" ]
then
alias ls='ls -F'
else
alias ls='ls -F --color=auto'
fi
# (略)
if [ x`whence dircolors` != x ]; then
if [ "$OSTYPE" = "cygwin" -a /dev/conin != "$TTY" ]
then
eval `TERM=vt100 dircolors`
else
eval `dircolors`
fi
fi
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}