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"
|
|
|
|
|
|
|
|
# Plugins
|
2016-02-04 07:27:26 +00:00
|
|
|
plugins=(archlinux common-aliases git sudo web-search)
|
2016-01-23 00:58:21 +00:00
|
|
|
# look into node/npm
|
|
|
|
|
|
|
|
# ZSH-Completions
|
|
|
|
plugins+=(zsh-completions)
|
|
|
|
autoload -U compinit && compinit
|
|
|
|
|
|
|
|
# User configuration
|
|
|
|
export PATH=$HOME/bin:/usr/local/bin:$PATH
|
|
|
|
# export MANPATH="/usr/local/man:$MANPATH"
|
|
|
|
|
2016-04-23 01:53:14 +00:00
|
|
|
export EDITOR=/usr/bin/vim
|
|
|
|
|
2016-01-23 00:58:21 +00:00
|
|
|
source $ZSH/oh-my-zsh.sh
|