blob: a9dbf47de48f5cb8a6c6a435877f50f38ee57ce2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- mode: sh -*-
# vim: ft=zsh
xzsource zprofile.pre
: ${PAGER:=less} ${EDITOR:=vi} \
${HOSTNAME:=$(uname -n)} ${USER:=$(id -un)} \
${HISTFILE:=~/.local/state/history/zsh}
if [ "${HISTSIZE:-30}" = 30 ]; then
HISTSIZE=5000
SAVEHIST=10000
fi
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}
|