blob: 26c7a2554ff1a30a19c4fb9d558194ee9af5f68e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
typeset -U path fpath
fpath=(~/.zsh/functions $fpath)
# load all things in there
autoload ${fpath[1]}/*(:t)
[[ -d ~/bin ]] && path=(~/bin $path)
# exports
export ECHANGELOG_USER="René Neumann (Necoro) <gentoo@necoro.eu>"
export EDITOR=vim
|