31 lines
617 B
Bash
31 lines
617 B
Bash
source $HOME/.antigen.zsh
|
|
source $HOME/.aliases
|
|
|
|
# Set $PATH
|
|
export PATH=$HOME/bin:$PATH
|
|
|
|
# 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 heroku
|
|
antigen bundle pip
|
|
antigen bundle lein
|
|
antigen bundle command-not-found
|
|
|
|
# Syntax highlighting bundle.
|
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
|
antigen bundle zsh-users/zsh-autosuggestions
|
|
|
|
# Load the theme.
|
|
antigen theme gentoo
|
|
|
|
# Tell Antigen that you're done.
|
|
antigen apply
|
|
|
|
# VTE
|
|
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
|
source /etc/profile.d/vte.sh
|
|
fi
|