Base ZSH working with Antigen

This commit is contained in:
Alicia Sykes 2021-02-03 21:29:58 +00:00
parent 54c77109f3
commit 5e9da6034f
4 changed files with 28 additions and 20 deletions

3
.gitmodules vendored
View File

@ -5,3 +5,6 @@
[submodule "tmux/tpm"]
path = tmux/tpm
url = https://github.com/tmux-plugins/tpm
[submodule "zsh/antigen"]
path = zsh/antigen
url = https://github.com/zsh-users/antigen.git

View File

@ -18,6 +18,7 @@
#ZSH
~/.zshrc: zsh/zshrc
~/.zsh/antigen: zsh/antigen
~/.oh-my-zsh/themes: zsh/themes
# bash

1
zsh/antigen Submodule

@ -0,0 +1 @@
Subproject commit 64de2dcd95d6a8e879cd2244c763d99f0144e78e

View File

@ -1,20 +1,23 @@
source /path-to-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 heroku
antigen bundle pip
antigen bundle lein
antigen bundle command-not-found
# Syntax highlighting bundle.
antigen bundle zsh-users/zsh-syntax-highlighting
# Load the theme.
antigen theme robbyrussell
# Tell Antigen that you're done.
antigen apply
ZSH_BASE=$HOME/dotfiles
source ~/.zsh/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 heroku
antigen bundle pip
antigen bundle lein
antigen bundle command-not-found
# Syntax highlighting bundle.
antigen bundle zsh-users/zsh-syntax-highlighting
# Load the theme.
antigen theme robbyrussell
# Tell Antigen that you're done.
antigen apply