26 lines
553 B
Bash
26 lines
553 B
Bash
source $HOME/.antigen/antigen.zsh
|
|
|
|
# Load the oh-my-zsh's library.
|
|
antigen use oh-my-zsh
|
|
|
|
# Bundles from the default repo (robbyrussell's oh-my-zsh).
|
|
antigen bundle git
|
|
antigen bundle pip
|
|
antigen bundle docker-compose
|
|
antigen bundle command-not-found
|
|
antigen bundle copybuffer
|
|
antigen bundle history
|
|
antigen bundle emoji
|
|
|
|
# Syntax highlighting bundle.
|
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
|
|
|
# Extra zsh completions
|
|
antigen bundle zsh-users/zsh-completions
|
|
|
|
# Load the theme.
|
|
antigen theme candy
|
|
|
|
# Tell antigen that you're done
|
|
antigen apply
|