configs/dot.zshrc

37 lines
953 B
Bash
Raw Normal View History

2015-02-10 03:59:59 +01:00
bindkey -v
source ~/.profile
2015-06-02 15:12:47 +02:00
source /usr/share/zsh/scripts/zgen/zgen.zsh
2012-10-26 02:30:01 +02:00
2013-01-14 21:27:18 +01:00
COMPLETION_WAITING_DOTS="true"
2015-02-10 03:59:59 +01:00
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
2015-06-30 16:38:43 +02:00
ZSH_HIGHLIGHT_PATTERNS+=('rm -fr*' 'fg=white,bold,bg=red')
ZSH_HIGHLIGHT_PATTERNS+=('rm -rf*' 'fg=white,bold,bg=red')
PROJECT_PATHS=(~/private ~/work)
2015-06-02 15:12:47 +02:00
if ! zgen saved; then
echo "running zgen"
zgen oh-my-zsh
zgen oh-my-zsh plugins/git
zgen oh-my-zsh plugins/git-extras
zgen oh-my-zsh plugins/ruby
zgen oh-my-zsh plugins/coffee
zgen oh-my-zsh plugins/archlinux
zgen oh-my-zsh plugins/extract
zgen oh-my-zsh plugins/screen
zgen oh-my-zsh plugins/sudo
zgen oh-my-zsh plugins/systemd
zgen oh-my-zsh plugins/pj
zgen oh-my-zsh plugins/command-not-found
zgen load zsh-users/zsh-syntax-highlighting
zgen load zsh-users/zaw
zgen load zsh-users/zsh-completions src
zgen load https://gist.github.com/9263734.git psy
zgen save
fi