Antibody instead of antigen

This commit is contained in:
Anthony Cicchetti 2019-10-11 09:27:31 -04:00
parent 706b959e24
commit 0accb664fb
3 changed files with 30 additions and 18 deletions

View file

@ -1,8 +1,20 @@
---
- name: Install antigen
git:
repo: https://github.com/zsh-users/antigen.git
dest: ~/.antigen
- name: Get antibody install script
get_url:
url: https://git.io/antibody
dest: /tmp/get_antibody.sh
mode: 0755
- name: Install antibody
shell: /tmp/get_antibody.sh -b ~/bin
args:
creates: ~/bin/antibody
- name: Symlink zsh_plugins.txt
file:
src: ~/.dotfiles/zsh/zsh_plugins.txt
dest: ~/.zsh_plugins.txt
state: link
- name: Symlink zshrc
file:

8
zsh/zsh_plugins.txt Normal file
View file

@ -0,0 +1,8 @@
robbyrussell/oh-my-zsh
robbyrussell/oh-my-zsh path:plugins/git
robbyrussell/oh-my-zsh path:plugins/vi-mode
zsh-users/zsh-syntax-highlighting
zsh-users/zsh-completions
ress997/zsh-completions-anyenv

View file

@ -1,4 +1,6 @@
# Lines configured by zsh-newuser-install
zmodload zsh/zprof
HISTFILE=~/.histfile
HISTSIZE=10000
SAVEHIST=10000
@ -35,26 +37,14 @@ export VISUAL='nvim'
export EDITOR='nvim'
export PATH=$HOME/bin:$PATH
# antigen
source $HOME/.antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle vi-mode
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-completions
antigen bundle ress997/zsh-completions-anyenv
antigen bundle matthieusb/zsh-sdkman
antibody bundle < ~/.zsh_plugins.txt
if [[ -e ~/.cargo/bin/starship ]]; then
eval "$(~/.cargo/bin/starship init zsh)"
else
antigen theme denysdovhan/spaceship-prompt
antibody bundle denysdovhan/spaceship-prompt
fi
antigen apply
alias exa="exa -l --git"
# export TERM="tmux-256color"
@ -122,3 +112,5 @@ else
printf "No zshsrc\nOne has been created\n"
touch $HOME/.zshsrc
fi
zprof