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 - name: Get antibody install script
git: get_url:
repo: https://github.com/zsh-users/antigen.git url: https://git.io/antibody
dest: ~/.antigen 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 - name: Symlink zshrc
file: 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 # Lines configured by zsh-newuser-install
zmodload zsh/zprof
HISTFILE=~/.histfile HISTFILE=~/.histfile
HISTSIZE=10000 HISTSIZE=10000
SAVEHIST=10000 SAVEHIST=10000
@ -35,26 +37,14 @@ export VISUAL='nvim'
export EDITOR='nvim' export EDITOR='nvim'
export PATH=$HOME/bin:$PATH export PATH=$HOME/bin:$PATH
# antigen antibody bundle < ~/.zsh_plugins.txt
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
if [[ -e ~/.cargo/bin/starship ]]; then if [[ -e ~/.cargo/bin/starship ]]; then
eval "$(~/.cargo/bin/starship init zsh)" eval "$(~/.cargo/bin/starship init zsh)"
else else
antigen theme denysdovhan/spaceship-prompt antibody bundle denysdovhan/spaceship-prompt
fi fi
antigen apply
alias exa="exa -l --git" alias exa="exa -l --git"
# export TERM="tmux-256color" # export TERM="tmux-256color"
@ -122,3 +112,5 @@ else
printf "No zshsrc\nOne has been created\n" printf "No zshsrc\nOne has been created\n"
touch $HOME/.zshsrc touch $HOME/.zshsrc
fi fi
zprof