dotfiles/zsh/.zshrc
George Rawlinson e7a0a184f3 fix(gpg): swap order of gpg & ssh agents
for unknown reasons, gpg agent was overriding ssh environment variables
2018-01-15 13:11:22 +13:00

29 lines
558 B
Bash

# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# theme
ZSH_THEME="ys"
# disable omz updates
DISABLE_UPDATE_PROMPT=true
DISABLE_AUTO_UPDATE=true
# plugins
plugins=(common-aliases git sudo gpg-agent ssh-agent)
# zsh-completions
autoload -U compinit && compinit
# add ~/bin and /usr/local/bin to $PATH
export PATH=$HOME/bin:/usr/local/bin:$PATH
# source omz
source $ZSH/oh-my-zsh.sh
# increase zsh history
export HISTSIZE=1000000000
export SAVEHIST=$HISTSIZE
setopt EXTENDED_HISTORY
# reduce linux syscalls
export TZ=:/etc/localtime