shell: set INFOPATH properly
[~bandali/configs] / .profile
CommitLineData
9daac239
AB
1# ~/.profile: executed by the command interpreter for login shells.
2# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
3# exists.
14623136 4
47d195d9
AB
5# source host-specific profile
6if [ -f "$HOME/.config/profiles/$(hostname)" ]; then
7 . "$HOME/.config/profiles/$(hostname)"
8fi
9
2446aab5
AB
10export EDITOR="emacsclient -nw"
11export VISUAL="emcl"
d99f86cd 12
a71a12e1 13PATH="$HOME/usr/local/bin:$HOME/.local/bin:$PATH"
9daac239 14PATH="$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin:$PATH"
47d195d9 15if [ -z "$IS_GUIX_SYSTEM" ]; then
09b0be0b 16 PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH"
a71a12e1 17 INFOPATH="$HOME/.config/guix/current/share/info${INFOPATH:+:}$INFOPATH"
09b0be0b 18 export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale"
47d195d9 19fi
9daac239 20export PATH
a71a12e1 21export INFOPATH
a75331ab 22
0f10b2c2
AB
23export XDG_CONFIG_HOME="$HOME/.config"
24export XDG_DATA_HOME="$HOME/.local/share"
9daac239
AB
25
26export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc
27export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc
a75331ab 28
0f10b2c2
AB
29export MAILDIR="$HOME/mail"
30export CVS_RSH="ssh"
a75331ab 31
9daac239
AB
32export GOPATH="$HOME/src/go"
33
34# if running bash
35if [ -n "$BASH_VERSION" ]; then
36 # include .bashrc if it exists
37 if [ -f "$HOME/.bashrc" ]; then
38 . "$HOME/.bashrc"
39 fi
40fi
41
47d195d9
AB
42if [ -z "$IS_GUIX_SYSTEM" ]; then
43 # if guix is installed
44 if [ -x "$(command -v guix)" ]; then
3dfefa51
AB
45 SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs"
46 if [ -d "$SSL_CERT_DIR" -o -h "$SSL_CERT_DIR" ]; then
47 export SSL_CERT_DIR
48 export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt"
49 else
50 printf "it seems you forgot to \`guix install nss-certs\'\n"
51 fi
47d195d9
AB
52 GUIX_PROFILE="$HOME/.guix-profile"
53 . "$GUIX_PROFILE/etc/profile"
54 fi
55fi
56
c0ace3ce
AB
57# start an ssh-agent (with guix's openssh)
58if [ -z "$IS_GUIX_SYSTEM" ]; then
59 if ! pgrep -u "$USER" ssh-agent > /dev/null; then
60 ssh-agent > ~/.ssh-agent-thing
61 fi
62 if [[ ! "$SSH_AUTH_SOCK" ]]; then
63 eval "$(<~/.ssh-agent-thing)"
64 fi
65fi
66
9daac239 67setxkbmap \
a38abd4c 68 -layout us,ir \
9daac239 69 -option ctrl:nocaps \
9daac239 70 -option grp:shifts_toggle
a38abd4c
AB
71
72xmodmap -e "keysym Menu = Super_R"
73
74xrdb -merge "$HOME/.Xresources"
b91f8784
AB
75
76# footenote: when on a foreign distro and using Xfce, don't forget to
77# disable its auto-start of gpg- and ssh-agent, by issuing
78# xfconf-query -c xfce4-session -p /startup/ssh-agent/enabled -n -t bool -s false
79# xfconf-query -c xfce4-session -p /startup/gpg-agent/enabled -n -t bool -s false
80# see https://docs.xfce.org/xfce/xfce4-session/advanced#ssh_and_gpg_agents
81# also, MATE does something similar with gnome-keyring-daemon:
82# http://william.shallum.net/random-notes/disabling-gnome-keyring-daemon-ssh-agent-on-mate-desktop