dotfiles/modules/shell/files/.zshrc
2017-08-12 17:43:07 +01:00

31 lines
640 B
Bash

# Path to your oh-my-zsh installation.
export ZSH=/usr/share/oh-my-zsh/
source $ZSH/oh-my-zsh.sh
# Plugins
plugins=(
django
pip
pyenv
python
common-aliases
gitfast
zsh-completions
)
autoload -U compinit && compinit
# 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%}$ "
COMPLETION_WAITING_DOTS="true"
alias src="source $HOME/.zshrc"