blob: ea18e4001516d88678e0db8d09dc83ebffa70529 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*- shell-script -*-
export GOPATH=~/src/go/
export LESS="FRX"
export PATH=${PATH/::/:}
export GPG_TTY=$(tty)
export EDITOR=emacsclient
export VISUAL=$EDITOR
path=(
~/.gem/ruby/*/bin(/N)
~/.cabal/bin(/N)
$GOPATH/bin(/N)
~/.cargo/bin(/N)
~/.poetry/bin(/N)
~/.local/bin(/N)
/usr/local/bin(/N)
/usr/local/sbin(/N)
/usr/sbin(/N)
/sbin(/N)
$path
)
typeset -xU path
[ -S ~/.gnupg/S.gpg-agent.ssh ] && export SSH_AUTH_SOCK=~/.gnupg/S.gpg-agent.ssh
[ -S /run/user/$EUID/gnupg/S.gpg-agent.ssh ] && export SSH_AUTH_SOCK=/run/user/$EUID/gnupg/S.gpg-agent.ssh
(( $+commands[rbenv] )) && eval "$(rbenv init -)"
|