dotfiles/zsh/.zshrc

30 lines
558 B
Bash
Raw Normal View History

2016-01-23 00:58:21 +00:00
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# theme
ZSH_THEME="ys"
2016-01-23 00:58:21 +00:00
# disable omz updates
2016-10-21 02:39:28 +00:00
DISABLE_UPDATE_PROMPT=true
DISABLE_AUTO_UPDATE=true
# plugins
plugins=(common-aliases git sudo ssh-agent gpg-agent)
2016-01-23 00:58:21 +00:00
# zsh-completions
2016-01-23 00:58:21 +00:00
autoload -U compinit && compinit
# add ~/bin and /usr/local/bin to $PATH
2016-01-23 00:58:21 +00:00
export PATH=$HOME/bin:/usr/local/bin:$PATH
# source omz
2016-01-23 00:58:21 +00:00
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