svn commit: r497191 - head/shells

Adam Weinberger adamw at FreeBSD.org
Fri Mar 29 19:40:05 UTC 2019


Author: adamw
Date: Fri Mar 29 19:40:04 2019
New Revision: 497191
URL: https://svnweb.freebsd.org/changeset/ports/497191

Log:
  Add shells/antibody
  
  This is a zsh plugin manager. Its syntax is similar to antigen, but is
  much, much faster. It's written in go (making it necessarily faster than
  antigen), but can also dump plugin info to a loadable script so that
  antibody doesn't need to run at all when spawning new shells.
  
  Antibody is a shell plugin manager made from the ground up thinking about
  performance.
  
  It is faster because it can do things concurrently, while Antigen does it
  sequentially. It also has the advantage of using a compiled language (go)
  instead of a scripting one.
  
  WWW: https://getantibody.github.io/

Modified:
  head/shells/Makefile

Modified: head/shells/Makefile
==============================================================================
--- head/shells/Makefile	Fri Mar 29 19:31:48 2019	(r497190)
+++ head/shells/Makefile	Fri Mar 29 19:40:04 2019	(r497191)
@@ -5,6 +5,7 @@
 
     SUBDIR += 44bsd-csh
     SUBDIR += ammonite
+    SUBDIR += antibody
     SUBDIR += bash
     SUBDIR += bash-completion
     SUBDIR += bash-static


More information about the svn-ports-all mailing list