blob: 7238813d2ac43845ee75a8fe140ec5898e55f898 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# vim: ft=zsh
xzsource zprofile.pre
: ${PAGER:=less} ${EDITOR:=vi} \
${HOSTNAME:=$(uname -n)} ${USER:=$(id -un)} \
${HISTFILE:=~/.local/state/history/zsh}
export EDITOR HISTFILE PAGER
setopt nullglob
path=(~/bin ~/.local/share/sh ~/.local/*/bin /opt/*/bin {/usr,}{/local,}/{s,}bin)
xsource ~/.local/share/sh/xdg
xzsource zprofile.{local,post}
|