changed zshrc to be system agnostic

This commit is contained in:
Nikolas Weger 2015-07-23 14:37:53 +02:00
parent 12d62cffd5
commit e4c52315a3

View file

@ -5,13 +5,19 @@ export ZSH=~/.dotfiles/lib/ohmyzsh
ZSH_THEME="pygmalion"
# Path
export PATH="/usr/local/sbin:/usr/local/bin:/usr/bin:$PATH"
export PATH="~/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:$PATH"
# Plugins
plugins=(gem bundler composer git pip vagrant docker python extract)
plugins+=(npm archlinux systemd systemadmin frontend-search gitignore)
plugins+=(npm systemd systemadmin frontend-search gitignore)
plugins+=(command-not-found colored-man)
if [ $(uname -n) = "megumi" ]; then
plugins+=(archlinux)
fi
if [ $(uname -n) = "mail" ]; then
plugins+=(debian)
fi
# Color TERM
export TERM=xterm-256color