diff options
Diffstat (limited to '_zsh/90-exports.zsh')
-rw-r--r-- | _zsh/90-exports.zsh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/_zsh/90-exports.zsh b/_zsh/90-exports.zsh new file mode 100644 index 0000000..8dab42d --- /dev/null +++ b/_zsh/90-exports.zsh @@ -0,0 +1,14 @@ +# +# zsh/exports.zsh +# + +# set locale and PATH in '~/.profile' + +export EDITOR='vim' +export PAGER='less' +export LESS='--ignore-case --raw-control-chars' + +# Setup terminal, and turn on colors +export TERM='xterm-256color' + +# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=zsh: # |