1
0
Fork 0
dotfiles/home/dot_config/zsh/custom/000-env.zsh

20 lines
464 B
Bash

# Make word splitting behave like bash
setopt SH_WORD_SPLIT
# History
HISTSIZE=100000
SAVEHIST=100000
setopt SHARE_HISTORY # Share history between all sessions.
setopt HIST_REDUCE_BLANKS # Remove superfluous blanks before recording entry.
# gpg-agent
export GPG_TTY=$(tty)
gpg-connect-agent updatestartuptty /bye >/dev/null
# keychain (for ssh agent)
eval $(keychain --eval --quiet --noask --nogui)
export GOPATH="$HOME/go"
export PATH="$PATH:$GOPATH"