blob: 536502dc1ea000cb88c6b3f261fc7ea655fd4d29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- mode: shell-script -*-
() {
local dir
for dir in ~/{.local/bin,bin} ${GOPATH:-~/go}/bin; do
[[ -d ${dir} ]] && path=(${dir} ${path})
done
}
if [[ -n ${TERM} ]]; then
# Make C-q and C-s work in zsh.
#
# See https://en.wikipedia.org/wiki/Software_flow_control for gory
# details.
stty -ixon
fi
source_if_exists dotfiles-${UNAME}/zsh/profile
source_if_exists dotfiles-${DOMAIN}/zsh/profile
source_if_exists dotfiles-${HOST}/zsh/profile
|