My .zshrc on OSX(mac)
% cat .zshrc ~
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt appendhistory autocd beep extendedglob nomatch notify
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/Users/x/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
# 한글 입력을 위한 정의
INPUTRC=$HOME/.inputrc
LANG=ko_KR.UTF-8
PATH=/opt/local/bin:$PATH
SVN_EDITOR=vim
# Prompt, PS1 is left, RPS1 is right.
PS1="%m@%n%% "
RPS1="%~"
export INPUTRC LANG PATH SVN_EDITOR PS1 RPS1
alias ls='ls -FGw' # 한글 표시, 디렉토리면 뒤에 / 표시, 확장자별 색상 표시



1 comment