From 0accb664fbef682afa06f6daec79e0f89fe878b4 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Fri, 11 Oct 2019 09:27:31 -0400 Subject: [PATCH] Antibody instead of antigen --- playbooks/roles/zsh/tasks/main.yml | 20 ++++++++++++++++---- zsh/zsh_plugins.txt | 8 ++++++++ zsh/zshrc | 20 ++++++-------------- 3 files changed, 30 insertions(+), 18 deletions(-) create mode 100644 zsh/zsh_plugins.txt diff --git a/playbooks/roles/zsh/tasks/main.yml b/playbooks/roles/zsh/tasks/main.yml index 6ca21b3..b479ac5 100644 --- a/playbooks/roles/zsh/tasks/main.yml +++ b/playbooks/roles/zsh/tasks/main.yml @@ -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: diff --git a/zsh/zsh_plugins.txt b/zsh/zsh_plugins.txt new file mode 100644 index 0000000..38cc070 --- /dev/null +++ b/zsh/zsh_plugins.txt @@ -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 + diff --git a/zsh/zshrc b/zsh/zshrc index a77170a..16f61e2 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -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