summaryrefslogtreecommitdiff
path: root/.profile
blob: a998c484173b5a9358bc02a7d941270748aaa6b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ~/.profile

PATH=~/bin:~/mu/bin:/opt/homebrew/bin:/opt/homebrew/opt/ruby/bin:/opt/homebrew/opt/tcl-tk/bin:$PATH:~/go/bin:~/.cargo/bin:~/.pyenv/versions/2.7.18/bin

export REPLYTO='mvertes@free.fr'
export LANG=en_US.UTF-8

if [ -z "$SSH_AUTH_SOCK" ] ; then
  eval `ssh-agent -s`
  ssh-add
fi

[ "${SHELL##*/}" = bash ] && . ~/.bashrc

# Last action: auto start X11 when logged on first console
#case $HOSTNAME in
#([sS]wift|yoda) [ "$(tty)" != /dev/tty1 ] || exec startx ;;
#esac

. "/opt/homebrew/etc/profile.d/bash_completion.sh"

tabs -4
export HOMEBREW_NO_ANALYTICS=1