Skip to content

Instantly share code, notes, and snippets.

@miwarin
Created May 14, 2018 14:11
Show Gist options
  • Save miwarin/f6a6ff37d78e8e70a8b4168e486ca5cd to your computer and use it in GitHub Desktop.
Save miwarin/f6a6ff37d78e8e70a8b4168e486ca5cd to your computer and use it in GitHub Desktop.
#
# Generic .zshenv file for zsh 2.7
#
# .zshenv is sourced on all invocations of the
# shell, unless the -f option is set. It should
# contain commands to set the command search path,
# plus other important environment variables.
# .zshenv should not contain commands that product
# output or assume the shell is attached to a tty.
#
# THIS FILE IS NOT INTENDED TO BE USED AS /etc/zshenv, NOR WITHOUT EDITING
##return 0 # Remove this line after editing this file as appropriate
export HOSTNAME=`hostname`
#export LANG=ja_JP.eucJP
export LANG=ja_JP.UTF-8
export LC_ALL=$LANG
export LC_CTYPE=$LANG
export PERL_BADLANG=0
export LV='-Ou8'
export EDITOR=vim
##EDITOR=emacsclient
##EDITOR='mule -nw'
export PERLLIB="$HOME/usr/local/lib/perl"
export RUBYLIB="$HOME/usr/local/lib/ruby"
export JSERVER=localhost
export LESSCHARSET=ascii
export JLESSCHARSET=japanese
##export PAGER=less
export PAGER=lv
export CVS_RSH=ssh
export CVSROOT=:pserver:anoncvs@anoncvs.jp.NetBSD.org:/cvs/cvsroot
export GTAGSROOT=/usr/src
export GTAGSDBPATH=/home/rin/work/netbsd.tags
export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46;30:tw=42;30:ow=43;30'
## not use XIM with Emacs on X
## http://www.jp.freebsd.org/QandA/HTML/1299.html
export XMODIFIERS="@im=none"
X11HOME=/usr/X11
manpath=(/usr/pkg/man /usr/share/man)
export GOPATH=$HOME/work/go
path=(/usr/pkg/lib/perl5/site_perl/bin /usr/local/sbin /usr/local/bin /usr/pkg/bin /usr/pkg/sbin /bin /sbin /usr/sbin /usr/bin ${HOME}/usr/local/bin ${GOPATH}/bin)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment