]> git.sev.monster Git - dotfiles.git/blame - base/.zshenv
update submodules, remove bsd shims, fix bugs
[dotfiles.git] / base / .zshenv
CommitLineData
f7960c69 1### path
f7960c69 2# /usr/{pkg,local,games} are unix/bsdisms
3typeset -U path
4path=({~/,/,/usr/}sbin {~/,/,/usr/}bin /usr/pkg/{s,}bin /usr/X11R{7,6}/bin
5 /usr/local/{s,}bin /usr/games $path)
6
7### posix
189288f7 8export EDITOR=vim
f7960c69 9export PAGER=less
10export GREP_OPTIONS=--color=auto
11export LANG="en_US.UTF-8"
12export LC_CTYPE="$LANG"
13
14### xdg
ac515d99 15export XDG_CONFIG_HOME=~/etc
f7960c69 16export XDG_CONFIG_DIRS=~/.config:/usr/pkg/etc/xdg:/usr/local/etc/xdg:/etc/xdg
ac515d99 17export XDG_DATA_HOME=~/share
7197cc5c 18export XDG_DATA_DIRS=~/.local/share:/usr/pkg/share:/usr/local/share:/usr/share
ac515d99 19export XDG_CACHE_HOME=~/tmp
a568f7fa 20export XDG_RUNTIME_DIR=~/tmp
189288f7 21
f7960c69 22### applications
189288f7 23export PYTHONSTARTUP=~/.pythonrc
ba63cd01 24
f7960c69 25### load site-specific
a568f7fa 26if [[ -f ~/.zshenv.local ]] {
ba63cd01 27 source ~/.zshenv.local
a568f7fa 28}
This page took 0.036512 seconds and 4 git commands to generate.