Skip to content

Commit 8d2f195

Browse files
committed
Change antigen to use antibody
Signed-off-by: Timo Sand <[email protected]>
1 parent 19766d6 commit 8d2f195

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ ssh/authorized_keys
2020
/bin/idea
2121
*.zwc
2222
zsh/Completion/*
23+
zsh/plugins.zsh

Rakefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,11 @@ namespace :update do
7171
task submodule: :subtree
7272

7373
desc 'Update all'
74-
task all: %i(vundle powerline node brew gems submodule) do
74+
task all: %i(vundle powerline node brew gems submodule antibody) do
75+
end
76+
77+
task :antibody do
78+
system %(antibody bundle <$HOME/.zsh/plugins/plugins.txt >$HOME/.zsh/plugins.zsh)
7579
end
7680
end
7781

config/Brewfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ tap "teamookla/speedtest"
1818
tap "tomanthony/brews"
1919
tap "vitorgalvao/tiny-scripts"
2020
tap "wagoodman/dive"
21-
# Plugin manager for zsh, inspired by oh-my-zsh and vundle
22-
brew "antigen"
21+
brew "antibody"
2322
# GNU File, Shell, and Text utilities
2423
brew "coreutils"
2524
# Extendable version manager with support for Ruby, Node.js, Erlang & more

zsh/plugins.zsh

Lines changed: 0 additions & 1 deletion
This file was deleted.

zsh/plugins/plugins.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
ohmyzsh/ohmyzsh path:plugins/tmux
2+
ohmyzsh/ohmyzsh path:plugins/tmuxinator
3+
ohmyzsh/ohmyzsh path:plugins/dash
4+
ohmyzsh/ohmyzsh path:plugins/terraform
5+
ohmyzsh/ohmyzsh path:plugins/thefuck
6+
7+
sorin-ionescu/prezto path:modules/ssh
8+
9+
zsh-users/zsh-completions
10+
zsh-users/zsh-autosuggestions
11+
zsh-users/zsh-syntax-highlighting
12+
https://gist.github.com/junegunn/8b572b8d4b5eddd8b85e5f4d40f17236 # git-fzf
13+
b4b4r07/enhancd
14+
jimhester/per-directory-history

zshrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ setopt noshwordsplit
8181
zstyle :omz:plugins:ssh-agent agent-forwarding on
8282
# zstyle :omz:plugins:ssh-agent identities keys/github_ed25519 keys/bitbucket_ed25519 keys/kapsi_ed25519 keys/gitlab_ed25519 keys/heroku_ed25519
8383

84-
source $HOME/.zsh/plugins/antigen.zsh
84+
# source $HOME/.zsh/plugins/antigen.zsh
85+
source $HOME/.zsh/plugins.zsh
8586

8687
# Set editor
8788
set -o vi

0 commit comments

Comments
 (0)