Commit | Line | Data |
---|---|---|
14623136 | 1 | export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc |
429f7662 | 2 | export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc |
14623136 | 3 | |
2446aab5 AB |
4 | export EDITOR="emacsclient -nw" |
5 | export VISUAL="emcl" | |
d99f86cd | 6 | |
0f10b2c2 | 7 | export PATH="$HOME/.local/bin:$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin${PATH:+:}$PATH" |
a75331ab | 8 | |
0f10b2c2 AB |
9 | export XDG_CONFIG_HOME="$HOME/.config" |
10 | export XDG_DATA_HOME="$HOME/.local/share" | |
11 | export XDG_DATA_DIRS="/usr/local/share:/usr/share" | |
a75331ab | 12 | |
0f10b2c2 AB |
13 | export MAILDIR="$HOME/mail" |
14 | export CVS_RSH="ssh" | |
a75331ab | 15 | |
d99f86cd AB |
16 | if [ -x "$(command -v guix)" ]; then |
17 | export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale" | |
18 | export PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH" | |
19 | export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs" | |
20 | export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" | |
21 | export GIT_SSL_CAINFO="$SSL_CERT_FILE" | |
22 | fi | |
0f10b2c2 AB |
23 | |
24 | export NIXPKGS="$HOME/src/git/nixpkgs" |