summaryrefslogtreecommitdiffstats
path: root/zsh/.zprofile
blob: 7b2966019c8979499a0c250115dc4e2381903153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export BROWSER=conkeror
export EDITOR="emacsclient -a emacs"

PATH="$HOME/usr/bin:$PATH"
PATH="/usr/local/heroku/bin:$PATH"
export PATH

INFOPATH="$HOME/documents/info:$INFOPATH"
INFOPATH="$INFOPATH:/usr/share/info"
INFOPATH="$INFOPATH:/usr/local/share/info"
export INFOPATH

GUILE_LOAD_PATH="$HOME/usr/share/guile"
export GUILE_LOAD_PATH

DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/`id -u`/bus"
export DBUS_SESSION_BUS_ADDRESS

XAUTHORITY="$HOME/.Xauthority"
export XAUTHORITY

if [ -z "$SSH_AGENT_PID" ]; then
    eval `ssh-agent`
fi

systemctl --user import-environment PATH INFOPATH