root/dotfiles/zsh/snj14/.zshenv @ 33170

Revision 33170, 0.9 kB (checked in by snj14, 4 years ago)

first commit

Line 
1# ------------------------------------------------------------------------------
2# Environment Variable
3# ------------------------------------------------------------------------------
4export ZDOTDIR=${HOME}/.zsh
5export PATH=${HOME}/bin:/opt/local/bin:/usr/local/bin:${PATH}
6export HOSTNAME=`hostname`
7export HTTP_HOME="http://www.google.co.jp/" # For w3m
8export LANG=ja_JP.UTF-8
9# if [ $TERM_PROGRAM = "Apple_Terminal" ]; then
10#     export TERM='xterm-color' # Terminal.app can't use 256 color
11# else
12#     export TERM='xterm-256color'
13# fi
14
15
16# $PAGER
17if [ `which lv 2> /dev/null` ]; then
18    export PAGER=lv
19elif [ `which less 2> /dev/null` ]; then
20    export PAGER=less
21fi
22
23# $EDITOR
24if [ `which emacs 2> /dev/null` ]; then
25    export EDITOR=emacs
26fi
27
28# $SVN_EDITOR (for Subversion)
29if [ `which vim 2> /dev/null` ]; then
30    export SVN_EDITOR=vim
31elif [ `which vi 2> /dev/null` ]; then
32    export SVN_EDITOR=vi
33fi
Note: See TracBrowser for help on using the browser.