1
0
Fork 0
dotfiles/files/.config/zsh/custom/000-env.zsh

16 lines
409 B
Bash
Raw Normal View History

2018-11-22 17:27:37 +00:00
# Make word splitting behave like bash
2018-03-10 04:04:29 +00:00
setopt SH_WORD_SPLIT
2018-11-22 17:27:37 +00:00
# History
HISTSIZE=100000
SAVEHIST=100000
setopt SHARE_HISTORY # Share history between all sessions.
setopt HIST_REDUCE_BLANKS # Remove superfluous blanks before recording entry.
2018-03-10 04:04:29 +00:00
# gpg-agent
export GPG_TTY=$(tty)
gpg-connect-agent updatestartuptty /bye >/dev/null
2019-07-17 04:23:04 +00:00
# keychain (for ssh agent)
eval $(keychain --eval --quiet --noask --nogui)