dotfiles/zsh/.zshrc

22 lines
402 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-10-21 02:39:28 +00:00
# Disable updates
DISABLE_UPDATE_PROMPT=true
DISABLE_AUTO_UPDATE=true
2016-01-23 00:58:21 +00:00
# Plugins
2016-10-21 21:27:59 +00:00
plugins=(archlinux common-aliases git sudo ssh-agent rust)
2016-01-23 00:58:21 +00:00
# ZSH-Completions
plugins+=(zsh-completions)
autoload -U compinit && compinit
# User configuration
export PATH=$HOME/bin:/usr/local/bin:$PATH
2016-01-23 00:58:21 +00:00
source $ZSH/oh-my-zsh.sh