Files
dotfiles/.zshrc
2016-04-23 17:27:04 +02:00

11 lines
340 B
Bash

autoload -Uz compinit promptinit
compinit
promptinit
autoload -U colors && colors
PS1="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m:%{$fg[yellow]%}%~%{$reset_color%}$ "
# load functions
[[ -f "$HOME/.dotfiles/functions" ]] && source "$HOME/.dotfiles/functions"
[[ -f "$HOME/.dotfiles/.commonrc" ]] && source "$HOME/.dotfiles/.commonrc"