changed zshrc to be system agnostic
This commit is contained in:
parent
12d62cffd5
commit
e4c52315a3
1 changed files with 8 additions and 2 deletions
10
files/zshrc
10
files/zshrc
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue