2016-11-19 22:04:40 +00:00
|
|
|
# Path to your oh-my-zsh installation.
|
|
|
|
export ZSH=/usr/share/oh-my-zsh/
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
|
|
# Plugins
|
2017-02-26 20:36:47 +00:00
|
|
|
plugins=(
|
|
|
|
git-extras
|
|
|
|
catimg
|
|
|
|
django
|
|
|
|
npm
|
|
|
|
pip
|
|
|
|
pyenv
|
|
|
|
python
|
|
|
|
common-aliases
|
|
|
|
dircycles
|
|
|
|
gitfast
|
|
|
|
jsontools
|
|
|
|
systemd
|
|
|
|
nyan
|
|
|
|
lol
|
|
|
|
web-search
|
2017-02-26 20:56:48 +00:00
|
|
|
zsh-completions
|
2017-02-26 20:36:47 +00:00
|
|
|
)
|
2016-11-19 22:04:40 +00:00
|
|
|
|
2017-02-26 20:56:48 +00:00
|
|
|
autoload -U compinit && compinit
|
|
|
|
|
2016-11-19 22:04:40 +00:00
|
|
|
# You may need to manually set your language environment
|
|
|
|
export LANG=en_GB.UTF-8
|
|
|
|
|
|
|
|
# Compilation flags
|
|
|
|
export ARCHFLAGS="-arch x86_64"
|
|
|
|
|
|
|
|
autoload -Uz colors && colors
|
|
|
|
local ret_status="%(?:%{$fg_bold[green]%}λ :%{$fg_bold[red]%}λ )"
|
|
|
|
export PROMPT="${ret_status} %{$fg_bold[green]%}%n@%m%{$reset_color%}:%{$fg_bold[blue]%}%~%{$reset_color%}$ "
|
|
|
|
|
|
|
|
alias src="source $HOME/.zshrc"
|
|
|
|
|
|
|
|
export DOTFILES="$HOME/.dotfiles"
|
2017-02-26 17:41:05 +00:00
|
|
|
|
2016-11-19 22:04:40 +00:00
|
|
|
source $DOTFILES/bash/base.sh
|