Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jul 2020 09:54:52 +0000 (UTC)
From:      "Serhii (Sergey) Kozlov" <skozlov@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r541477 - in head/shells: . ohmyzsh ohmyzsh/files
Message-ID:  <202007080954.0689sqqZ021747@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skozlov
Date: Wed Jul  8 09:54:52 2020
New Revision: 541477
URL: https://svnweb.freebsd.org/changeset/ports/541477

Log:
  New port: shells/ohmyzsh
  
  Oh My Zsh is an open source, community-driven framework for managing your zsh
  configuration. Port version has install, uninstall, and upgrade functionalities
  removed. Internal paths are adjusted to allow multiple users to use Oh My Zsh
  together.
  
  Reviewed by:	fernape
  Sponsored by:	Intel
  Differential Revision:	D25582

Added:
  head/shells/ohmyzsh/
  head/shells/ohmyzsh/Makefile   (contents, props changed)
  head/shells/ohmyzsh/distinfo   (contents, props changed)
  head/shells/ohmyzsh/files/
  head/shells/ohmyzsh/files/patch-oh-my-zsh.sh   (contents, props changed)
  head/shells/ohmyzsh/files/patch-templates_zshrc.zsh-template   (contents, props changed)
  head/shells/ohmyzsh/files/pkg-message.in   (contents, props changed)
  head/shells/ohmyzsh/pkg-descr   (contents, props changed)
  head/shells/ohmyzsh/pkg-plist   (contents, props changed)
Modified:
  head/shells/Makefile

Modified: head/shells/Makefile
==============================================================================
--- head/shells/Makefile	Wed Jul  8 09:53:40 2020	(r541476)
+++ head/shells/Makefile	Wed Jul  8 09:54:52 2020	(r541477)
@@ -31,6 +31,7 @@
     SUBDIR += lshell
     SUBDIR += mksh
     SUBDIR += nologinmsg
+    SUBDIR += ohmyzsh
     SUBDIR += oksh
     SUBDIR += p5-Bash-Completion
     SUBDIR += p5-Shell-Perl

Added: head/shells/ohmyzsh/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/ohmyzsh/Makefile	Wed Jul  8 09:54:52 2020	(r541477)
@@ -0,0 +1,37 @@
+# Created by: Serhii (Sergey) Kozlov <skozlov@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ohmyzsh
+PORTVERSION=	20200706
+CATEGORIES=	shells
+
+MAINTAINER=	skozlov@FreeBSD.org
+COMMENT=	Community-driven framework for managing your zsh configuration
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	zsh:shells/zsh
+
+USE_GITHUB=	yes
+GH_TAGNAME=	1c58a746af7a67f311ee47f97285a855eaf18b5e
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+
+SUB_FILES=	pkg-message
+
+post-extract:
+	${RM} -r ${WRKSRC}/log ${WRKSRC}/cache
+.for f in install upgrade uninstall check_for_upgrade
+	${RM} ${WRKSRC}/tools/${f}.sh
+.endfor
+
+post-patch:
+	${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|g" ${WRKSRC}/templates/zshrc.zsh-template
+
+do-install:
+	${MKDIR} ${STAGEDIR}${DATADIR}
+	cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} "! -path \./\.* ! -name *\.bak ! -name *\.orig"
+
+.include <bsd.port.mk>

Added: head/shells/ohmyzsh/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/ohmyzsh/distinfo	Wed Jul  8 09:54:52 2020	(r541477)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1594050806
+SHA256 (ohmyzsh-ohmyzsh-20200706-1c58a746af7a67f311ee47f97285a855eaf18b5e_GH0.tar.gz) = cc9ce90a0543798715aa972c898d8ef017e131937d28271c9e053fc9360290c1
+SIZE (ohmyzsh-ohmyzsh-20200706-1c58a746af7a67f311ee47f97285a855eaf18b5e_GH0.tar.gz) = 648364

Added: head/shells/ohmyzsh/files/patch-oh-my-zsh.sh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/ohmyzsh/files/patch-oh-my-zsh.sh	Wed Jul  8 09:54:52 2020	(r541477)
@@ -0,0 +1,16 @@
+--- oh-my-zsh.sh.orig	2020-07-06 15:31:40 UTC
++++ oh-my-zsh.sh
+@@ -1,12 +1,7 @@
+ # Set ZSH_CACHE_DIR to the path where cache files should be created
+ # or else we will use the default cache/
+ if [[ -z "$ZSH_CACHE_DIR" ]]; then
+-  ZSH_CACHE_DIR="$ZSH/cache"
+-fi
+-
+-# Check for updates on initial load...
+-if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then
+-  source $ZSH/tools/check_for_upgrade.sh
++  ZSH_CACHE_DIR="$HOME/.oh-my-zsh/cache"
+ fi
+ 
+ # Initializes Oh My Zsh

Added: head/shells/ohmyzsh/files/patch-templates_zshrc.zsh-template
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/ohmyzsh/files/patch-templates_zshrc.zsh-template	Wed Jul  8 09:54:52 2020	(r541477)
@@ -0,0 +1,27 @@
+--- templates/zshrc.zsh-template.orig	2020-07-06 15:31:40 UTC
++++ templates/zshrc.zsh-template
+@@ -2,7 +2,7 @@
+ # export PATH=$HOME/bin:/usr/local/bin:$PATH
+ 
+ # Path to your oh-my-zsh installation.
+-export ZSH=$HOME/.oh-my-zsh
++export ZSH=%%DATADIR%%
+ 
+ # Set name of the theme to load --- if set to "random", it will
+ # load a random theme each time oh-my-zsh is loaded, in which case,
+@@ -22,15 +22,6 @@ ZSH_THEME="robbyrussell"
+ # Uncomment the following line to use hyphen-insensitive completion.
+ # Case-sensitive completion must be off. _ and - will be interchangeable.
+ # HYPHEN_INSENSITIVE="true"
+-
+-# Uncomment the following line to disable bi-weekly auto-update checks.
+-# DISABLE_AUTO_UPDATE="true"
+-
+-# Uncomment the following line to automatically update without prompting.
+-# DISABLE_UPDATE_PROMPT="true"
+-
+-# Uncomment the following line to change how often to auto-update (in days).
+-# export UPDATE_ZSH_DAYS=13
+ 
+ # Uncomment the following line if pasting URLs and other text is messed up.
+ # DISABLE_MAGIC_FUNCTIONS="true"

Added: head/shells/ohmyzsh/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/ohmyzsh/files/pkg-message.in	Wed Jul  8 09:54:52 2020	(r541477)
@@ -0,0 +1,16 @@
+[
+{ type: install
+  message: <<EOM
+To install Oh My Zsh:
+
+1. (optionally) Backup your existing ~/.zshrc file
+cp ~/.zshrc ~/.zshrc.orig
+
+2. Create a new zsh configuration file
+cp %%DATADIR%%/templates/zshrc.zsh-template ~/.zshrc
+
+3. Create Oh My Zsh cache directory
+mkdir -p ~/.oh-my-zsh/cache
+EOM
+}
+]

Added: head/shells/ohmyzsh/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/ohmyzsh/pkg-descr	Wed Jul  8 09:54:52 2020	(r541477)
@@ -0,0 +1,17 @@
+Oh My Zsh is an open source, community-driven framework for managing your zsh
+configuration.
+
+Sounds boring. Let's try again.
+
+Oh My Zsh will not make you a 10x developer...but you may feel like one.
+
+Once installed, your terminal shell will become the talk of the town or your
+money back! With each keystroke in your command prompt, you'll take advantage of
+the hundreds of powerful plugins and beautiful themes. Strangers will come up to
+you in cafes and ask yo, "that is amazing! are you some sort of genis?"
+
+Finally, you'll begin to get the sort of attention that you have always felt you
+deserved. ...or maybe you'll use the time that you're saving to start flossing
+more often.
+
+WWW: https://ohmyz.sh/

Added: head/shells/ohmyzsh/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/ohmyzsh/pkg-plist	Wed Jul  8 09:54:52 2020	(r541477)
@@ -0,0 +1,845 @@
+%%DATADIR%%/CODE_OF_CONDUCT.md
+%%DATADIR%%/CONTRIBUTING.md
+%%DATADIR%%/LICENSE.txt
+%%DATADIR%%/README.md
+%%DATADIR%%/custom/example.zsh
+%%DATADIR%%/custom/plugins/example/example.plugin.zsh
+%%DATADIR%%/custom/themes/example.zsh-theme
+%%DATADIR%%/lib/bzr.zsh
+%%DATADIR%%/lib/cli.zsh
+%%DATADIR%%/lib/clipboard.zsh
+%%DATADIR%%/lib/compfix.zsh
+%%DATADIR%%/lib/completion.zsh
+%%DATADIR%%/lib/correction.zsh
+%%DATADIR%%/lib/diagnostics.zsh
+%%DATADIR%%/lib/directories.zsh
+%%DATADIR%%/lib/functions.zsh
+%%DATADIR%%/lib/git.zsh
+%%DATADIR%%/lib/grep.zsh
+%%DATADIR%%/lib/history.zsh
+%%DATADIR%%/lib/key-bindings.zsh
+%%DATADIR%%/lib/misc.zsh
+%%DATADIR%%/lib/nvm.zsh
+%%DATADIR%%/lib/prompt_info_functions.zsh
+%%DATADIR%%/lib/spectrum.zsh
+%%DATADIR%%/lib/termsupport.zsh
+%%DATADIR%%/lib/theme-and-appearance.zsh
+%%DATADIR%%/oh-my-zsh.sh
+%%DATADIR%%/plugins/adb/README.md
+%%DATADIR%%/plugins/adb/_adb
+%%DATADIR%%/plugins/alias-finder/README.md
+%%DATADIR%%/plugins/alias-finder/alias-finder.plugin.zsh
+%%DATADIR%%/plugins/ansible/README.md
+%%DATADIR%%/plugins/ansible/ansible.plugin.zsh
+%%DATADIR%%/plugins/ant/README.md
+%%DATADIR%%/plugins/ant/ant.plugin.zsh
+%%DATADIR%%/plugins/apache2-macports/README.md
+%%DATADIR%%/plugins/apache2-macports/apache2-macports.plugin.zsh
+%%DATADIR%%/plugins/arcanist/README.md
+%%DATADIR%%/plugins/arcanist/arcanist.plugin.zsh
+%%DATADIR%%/plugins/archlinux/README.md
+%%DATADIR%%/plugins/archlinux/archlinux.plugin.zsh
+%%DATADIR%%/plugins/asdf/README.md
+%%DATADIR%%/plugins/asdf/asdf.plugin.zsh
+%%DATADIR%%/plugins/autoenv/README.md
+%%DATADIR%%/plugins/autoenv/autoenv.plugin.zsh
+%%DATADIR%%/plugins/autojump/README.md
+%%DATADIR%%/plugins/autojump/autojump.plugin.zsh
+%%DATADIR%%/plugins/autopep8/README.md
+%%DATADIR%%/plugins/autopep8/_autopep8
+%%DATADIR%%/plugins/aws/README.md
+%%DATADIR%%/plugins/aws/aws.plugin.zsh
+%%DATADIR%%/plugins/battery/README.md
+%%DATADIR%%/plugins/battery/battery.plugin.zsh
+%%DATADIR%%/plugins/bazel/README.md
+%%DATADIR%%/plugins/bazel/_bazel
+%%DATADIR%%/plugins/bbedit/README.md
+%%DATADIR%%/plugins/bbedit/bbedit.plugin.zsh
+%%DATADIR%%/plugins/bgnotify/README.md
+%%DATADIR%%/plugins/bgnotify/bgnotify.plugin.zsh
+%%DATADIR%%/plugins/boot2docker/README.md
+%%DATADIR%%/plugins/boot2docker/_boot2docker
+%%DATADIR%%/plugins/bower/README.md
+%%DATADIR%%/plugins/bower/_bower
+%%DATADIR%%/plugins/bower/bower.plugin.zsh
+%%DATADIR%%/plugins/branch/README.md
+%%DATADIR%%/plugins/branch/branch.plugin.zsh
+%%DATADIR%%/plugins/brew/README.md
+%%DATADIR%%/plugins/brew/brew.plugin.zsh
+%%DATADIR%%/plugins/bundler/README.md
+%%DATADIR%%/plugins/bundler/_bundler
+%%DATADIR%%/plugins/bundler/bundler.plugin.zsh
+%%DATADIR%%/plugins/cabal/README.md
+%%DATADIR%%/plugins/cabal/cabal.plugin.zsh
+%%DATADIR%%/plugins/cake/README.md
+%%DATADIR%%/plugins/cake/cake.plugin.zsh
+%%DATADIR%%/plugins/cakephp3/README.md
+%%DATADIR%%/plugins/cakephp3/cakephp3.plugin.zsh
+%%DATADIR%%/plugins/capistrano/README.md
+%%DATADIR%%/plugins/capistrano/_capistrano
+%%DATADIR%%/plugins/capistrano/capistrano.plugin.zsh
+%%DATADIR%%/plugins/cargo/README.md
+%%DATADIR%%/plugins/cargo/_cargo
+%%DATADIR%%/plugins/cask/README.md
+%%DATADIR%%/plugins/cask/cask.plugin.zsh
+%%DATADIR%%/plugins/catimg/README.md
+%%DATADIR%%/plugins/catimg/catimg.plugin.zsh
+%%DATADIR%%/plugins/catimg/catimg.sh
+%%DATADIR%%/plugins/catimg/colors.png
+%%DATADIR%%/plugins/celery/README.md
+%%DATADIR%%/plugins/celery/_celery
+%%DATADIR%%/plugins/chruby/README.md
+%%DATADIR%%/plugins/chruby/chruby.plugin.zsh
+%%DATADIR%%/plugins/chucknorris/.gitignore
+%%DATADIR%%/plugins/chucknorris/README.md
+%%DATADIR%%/plugins/chucknorris/chucknorris.plugin.zsh
+%%DATADIR%%/plugins/chucknorris/fortunes/chucknorris
+%%DATADIR%%/plugins/cloudapp/README.md
+%%DATADIR%%/plugins/cloudapp/cloudapp.plugin.zsh
+%%DATADIR%%/plugins/cloudfoundry/README.md
+%%DATADIR%%/plugins/cloudfoundry/cloudfoundry.plugin.zsh
+%%DATADIR%%/plugins/codeclimate/README.md
+%%DATADIR%%/plugins/codeclimate/_codeclimate
+%%DATADIR%%/plugins/coffee/README.md
+%%DATADIR%%/plugins/coffee/_coffee
+%%DATADIR%%/plugins/coffee/coffee.plugin.zsh
+%%DATADIR%%/plugins/colemak/README.md
+%%DATADIR%%/plugins/colemak/colemak-less
+%%DATADIR%%/plugins/colemak/colemak.plugin.zsh
+%%DATADIR%%/plugins/colored-man-pages/README.md
+%%DATADIR%%/plugins/colored-man-pages/colored-man-pages.plugin.zsh
+%%DATADIR%%/plugins/colorize/README.md
+%%DATADIR%%/plugins/colorize/colorize.plugin.zsh
+%%DATADIR%%/plugins/command-not-found/README.md
+%%DATADIR%%/plugins/command-not-found/command-not-found.plugin.zsh
+%%DATADIR%%/plugins/common-aliases/README.md
+%%DATADIR%%/plugins/common-aliases/common-aliases.plugin.zsh
+%%DATADIR%%/plugins/compleat/README.md
+%%DATADIR%%/plugins/compleat/compleat.plugin.zsh
+%%DATADIR%%/plugins/composer/README.md
+%%DATADIR%%/plugins/composer/composer.plugin.zsh
+%%DATADIR%%/plugins/copybuffer/README.md
+%%DATADIR%%/plugins/copybuffer/copybuffer.plugin.zsh
+%%DATADIR%%/plugins/copydir/README.md
+%%DATADIR%%/plugins/copydir/copydir.plugin.zsh
+%%DATADIR%%/plugins/copyfile/README.md
+%%DATADIR%%/plugins/copyfile/copyfile.plugin.zsh
+%%DATADIR%%/plugins/cp/README.md
+%%DATADIR%%/plugins/cp/cp.plugin.zsh
+%%DATADIR%%/plugins/cpanm/README.md
+%%DATADIR%%/plugins/cpanm/_cpanm
+%%DATADIR%%/plugins/dash/README.md
+%%DATADIR%%/plugins/dash/dash.plugin.zsh
+%%DATADIR%%/plugins/debian/README.md
+%%DATADIR%%/plugins/debian/debian.plugin.zsh
+%%DATADIR%%/plugins/dircycle/README.md
+%%DATADIR%%/plugins/dircycle/dircycle.plugin.zsh
+%%DATADIR%%/plugins/direnv/README.md
+%%DATADIR%%/plugins/direnv/direnv.plugin.zsh
+%%DATADIR%%/plugins/dirhistory/README.md
+%%DATADIR%%/plugins/dirhistory/dirhistory.plugin.zsh
+%%DATADIR%%/plugins/dirpersist/README.md
+%%DATADIR%%/plugins/dirpersist/dirpersist.plugin.zsh
+%%DATADIR%%/plugins/django/README.md
+%%DATADIR%%/plugins/django/django.plugin.zsh
+%%DATADIR%%/plugins/dnf/README.md
+%%DATADIR%%/plugins/dnf/dnf.plugin.zsh
+%%DATADIR%%/plugins/dnote/README.md
+%%DATADIR%%/plugins/dnote/_dnote
+%%DATADIR%%/plugins/docker-compose/README.md
+%%DATADIR%%/plugins/docker-compose/_docker-compose
+%%DATADIR%%/plugins/docker-compose/docker-compose.plugin.zsh
+%%DATADIR%%/plugins/docker-machine/README.md
+%%DATADIR%%/plugins/docker-machine/_docker-machine
+%%DATADIR%%/plugins/docker-machine/docker-machine.plugin.zsh
+%%DATADIR%%/plugins/docker/README.md
+%%DATADIR%%/plugins/docker/_docker
+%%DATADIR%%/plugins/doctl/README.md
+%%DATADIR%%/plugins/doctl/doctl.plugin.zsh
+%%DATADIR%%/plugins/dotenv/README.md
+%%DATADIR%%/plugins/dotenv/dotenv.plugin.zsh
+%%DATADIR%%/plugins/dotnet/README.md
+%%DATADIR%%/plugins/dotnet/dotnet.plugin.zsh
+%%DATADIR%%/plugins/droplr/README.md
+%%DATADIR%%/plugins/droplr/droplr.plugin.zsh
+%%DATADIR%%/plugins/drush/README.md
+%%DATADIR%%/plugins/drush/drush.complete.sh
+%%DATADIR%%/plugins/drush/drush.plugin.zsh
+%%DATADIR%%/plugins/eecms/README.md
+%%DATADIR%%/plugins/eecms/eecms.plugin.zsh
+%%DATADIR%%/plugins/emacs/README.md
+%%DATADIR%%/plugins/emacs/emacs.plugin.zsh
+%%DATADIR%%/plugins/emacs/emacsclient.sh
+%%DATADIR%%/plugins/ember-cli/README.md
+%%DATADIR%%/plugins/ember-cli/ember-cli.plugin.zsh
+%%DATADIR%%/plugins/emoji-clock/README.md
+%%DATADIR%%/plugins/emoji-clock/emoji-clock.plugin.zsh
+%%DATADIR%%/plugins/emoji/README.md
+%%DATADIR%%/plugins/emoji/emoji-char-definitions.zsh
+%%DATADIR%%/plugins/emoji/emoji-data.txt
+%%DATADIR%%/plugins/emoji/emoji.plugin.zsh
+%%DATADIR%%/plugins/emoji/update_emoji.pl
+%%DATADIR%%/plugins/emotty/README.md
+%%DATADIR%%/plugins/emotty/emotty.plugin.zsh
+%%DATADIR%%/plugins/emotty/emotty_emoji_set.zsh
+%%DATADIR%%/plugins/emotty/emotty_floral_set.zsh
+%%DATADIR%%/plugins/emotty/emotty_love_set.zsh
+%%DATADIR%%/plugins/emotty/emotty_nature_set.zsh
+%%DATADIR%%/plugins/emotty/emotty_stellar_set.zsh
+%%DATADIR%%/plugins/emotty/emotty_zodiac_set.zsh
+%%DATADIR%%/plugins/encode64/README.md
+%%DATADIR%%/plugins/encode64/encode64.plugin.zsh
+%%DATADIR%%/plugins/extract/README.md
+%%DATADIR%%/plugins/extract/_extract
+%%DATADIR%%/plugins/extract/extract.plugin.zsh
+%%DATADIR%%/plugins/fabric/README.md
+%%DATADIR%%/plugins/fabric/_fab
+%%DATADIR%%/plugins/fabric/fabric.plugin.zsh
+%%DATADIR%%/plugins/fancy-ctrl-z/README.md
+%%DATADIR%%/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh
+%%DATADIR%%/plugins/fasd/README.md
+%%DATADIR%%/plugins/fasd/fasd.plugin.zsh
+%%DATADIR%%/plugins/fastfile/README.md
+%%DATADIR%%/plugins/fastfile/fastfile.plugin.zsh
+%%DATADIR%%/plugins/fbterm/README.md
+%%DATADIR%%/plugins/fbterm/fbterm.plugin.zsh
+%%DATADIR%%/plugins/fd/README.md
+%%DATADIR%%/plugins/fd/_fd
+%%DATADIR%%/plugins/fedora/README.md
+%%DATADIR%%/plugins/fedora/fedora.plugin.zsh
+%%DATADIR%%/plugins/firewalld/README.md
+%%DATADIR%%/plugins/firewalld/firewalld.plugin.zsh
+%%DATADIR%%/plugins/flutter/README.md
+%%DATADIR%%/plugins/flutter/_flutter
+%%DATADIR%%/plugins/flutter/flutter.plugin.zsh
+%%DATADIR%%/plugins/forklift/README.md
+%%DATADIR%%/plugins/forklift/forklift.plugin.zsh
+%%DATADIR%%/plugins/fossil/README.md
+%%DATADIR%%/plugins/fossil/fossil.plugin.zsh
+%%DATADIR%%/plugins/frontend-search/README.md
+%%DATADIR%%/plugins/frontend-search/_frontend-search.sh
+%%DATADIR%%/plugins/frontend-search/frontend-search.plugin.zsh
+%%DATADIR%%/plugins/fzf/README.md
+%%DATADIR%%/plugins/fzf/fzf.plugin.zsh
+%%DATADIR%%/plugins/gas/README.md
+%%DATADIR%%/plugins/gas/_gas
+%%DATADIR%%/plugins/gatsby/README.md
+%%DATADIR%%/plugins/gatsby/_gatsby
+%%DATADIR%%/plugins/gb/README.md
+%%DATADIR%%/plugins/gb/_gb
+%%DATADIR%%/plugins/gcloud/README.md
+%%DATADIR%%/plugins/gcloud/gcloud.plugin.zsh
+%%DATADIR%%/plugins/geeknote/README.md
+%%DATADIR%%/plugins/geeknote/_geeknote
+%%DATADIR%%/plugins/geeknote/geeknote.plugin.zsh
+%%DATADIR%%/plugins/gem/README.md
+%%DATADIR%%/plugins/gem/_gem
+%%DATADIR%%/plugins/gem/gem.plugin.zsh
+%%DATADIR%%/plugins/git-auto-fetch/README.md
+%%DATADIR%%/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
+%%DATADIR%%/plugins/git-escape-magic/README.md
+%%DATADIR%%/plugins/git-escape-magic/git-escape-magic
+%%DATADIR%%/plugins/git-escape-magic/git-escape-magic.plugin.zsh
+%%DATADIR%%/plugins/git-extras/README.md
+%%DATADIR%%/plugins/git-extras/git-extras.plugin.zsh
+%%DATADIR%%/plugins/git-flow-avh/README.md
+%%DATADIR%%/plugins/git-flow-avh/git-flow-avh.plugin.zsh
+%%DATADIR%%/plugins/git-flow/README.md
+%%DATADIR%%/plugins/git-flow/git-flow.plugin.zsh
+%%DATADIR%%/plugins/git-hubflow/README.md
+%%DATADIR%%/plugins/git-hubflow/git-hubflow.plugin.zsh
+%%DATADIR%%/plugins/git-prompt/README.md
+%%DATADIR%%/plugins/git-prompt/git-prompt.plugin.zsh
+%%DATADIR%%/plugins/git-prompt/gitstatus.py
+%%DATADIR%%/plugins/git/README.md
+%%DATADIR%%/plugins/git/git.plugin.zsh
+%%DATADIR%%/plugins/gitfast/README.md
+%%DATADIR%%/plugins/gitfast/_git
+%%DATADIR%%/plugins/gitfast/git-completion.bash
+%%DATADIR%%/plugins/gitfast/git-prompt.sh
+%%DATADIR%%/plugins/gitfast/gitfast.plugin.zsh
+%%DATADIR%%/plugins/gitfast/update
+%%DATADIR%%/plugins/gitfast/updates.patch
+%%DATADIR%%/plugins/github/README.md
+%%DATADIR%%/plugins/github/_hub
+%%DATADIR%%/plugins/github/github.plugin.zsh
+%%DATADIR%%/plugins/gitignore/README.md
+%%DATADIR%%/plugins/gitignore/gitignore.plugin.zsh
+%%DATADIR%%/plugins/glassfish/README.md
+%%DATADIR%%/plugins/glassfish/_asadmin
+%%DATADIR%%/plugins/glassfish/glassfish.plugin.zsh
+%%DATADIR%%/plugins/globalias/README.md
+%%DATADIR%%/plugins/globalias/globalias.plugin.zsh
+%%DATADIR%%/plugins/gnu-utils/README.md
+%%DATADIR%%/plugins/gnu-utils/gnu-utils.plugin.zsh
+%%DATADIR%%/plugins/go/README.md
+%%DATADIR%%/plugins/go/go.plugin.zsh
+%%DATADIR%%/plugins/golang/README.md
+%%DATADIR%%/plugins/golang/golang.plugin.zsh
+%%DATADIR%%/plugins/golang/templates/package.txt
+%%DATADIR%%/plugins/golang/templates/search.txt
+%%DATADIR%%/plugins/gpg-agent/README.md
+%%DATADIR%%/plugins/gpg-agent/gpg-agent.plugin.zsh
+%%DATADIR%%/plugins/gradle/README.md
+%%DATADIR%%/plugins/gradle/_gradle
+%%DATADIR%%/plugins/gradle/gradle.plugin.zsh
+%%DATADIR%%/plugins/grails/README.md
+%%DATADIR%%/plugins/grails/grails.plugin.zsh
+%%DATADIR%%/plugins/grunt/README.md
+%%DATADIR%%/plugins/grunt/grunt.plugin.zsh
+%%DATADIR%%/plugins/gulp/README.md
+%%DATADIR%%/plugins/gulp/gulp.plugin.zsh
+%%DATADIR%%/plugins/hanami/README.md
+%%DATADIR%%/plugins/hanami/hanami.plugin.zsh
+%%DATADIR%%/plugins/helm/README.md
+%%DATADIR%%/plugins/helm/helm.plugin.zsh
+%%DATADIR%%/plugins/heroku/README.md
+%%DATADIR%%/plugins/heroku/heroku.plugin.zsh
+%%DATADIR%%/plugins/history-substring-search/README.md
+%%DATADIR%%/plugins/history-substring-search/history-substring-search.plugin.zsh
+%%DATADIR%%/plugins/history-substring-search/history-substring-search.zsh
+%%DATADIR%%/plugins/history-substring-search/update-from-upstream.zsh
+%%DATADIR%%/plugins/history/README.md
+%%DATADIR%%/plugins/history/history.plugin.zsh
+%%DATADIR%%/plugins/hitokoto/README.md
+%%DATADIR%%/plugins/hitokoto/hitokoto.plugin.zsh
+%%DATADIR%%/plugins/homestead/README.md
+%%DATADIR%%/plugins/homestead/homestead.plugin.zsh
+%%DATADIR%%/plugins/httpie/README.md
+%%DATADIR%%/plugins/httpie/_httpie
+%%DATADIR%%/plugins/ionic/README.md
+%%DATADIR%%/plugins/ionic/ionic.plugin.zsh
+%%DATADIR%%/plugins/iterm2/README.md
+%%DATADIR%%/plugins/iterm2/iterm2.plugin.zsh
+%%DATADIR%%/plugins/jake-node/README.md
+%%DATADIR%%/plugins/jake-node/jake-node.plugin.zsh
+%%DATADIR%%/plugins/jenv/README.md
+%%DATADIR%%/plugins/jenv/jenv.plugin.zsh
+%%DATADIR%%/plugins/jfrog/README.md
+%%DATADIR%%/plugins/jfrog/jfrog.plugin.zsh
+%%DATADIR%%/plugins/jhbuild/README.md
+%%DATADIR%%/plugins/jhbuild/jhbuild.plugin.zsh
+%%DATADIR%%/plugins/jira/README.md
+%%DATADIR%%/plugins/jira/_jira
+%%DATADIR%%/plugins/jira/jira.plugin.zsh
+%%DATADIR%%/plugins/jruby/README.md
+%%DATADIR%%/plugins/jruby/jruby.plugin.zsh
+%%DATADIR%%/plugins/jsontools/README.md
+%%DATADIR%%/plugins/jsontools/jsontools.plugin.zsh
+%%DATADIR%%/plugins/jump/README.md
+%%DATADIR%%/plugins/jump/jump.plugin.zsh
+%%DATADIR%%/plugins/kate/README.md
+%%DATADIR%%/plugins/kate/kate.plugin.zsh
+%%DATADIR%%/plugins/keychain/README.md
+%%DATADIR%%/plugins/keychain/keychain.plugin.zsh
+%%DATADIR%%/plugins/kitchen/README.md
+%%DATADIR%%/plugins/kitchen/_kitchen
+%%DATADIR%%/plugins/knife/README.md
+%%DATADIR%%/plugins/knife/_knife
+%%DATADIR%%/plugins/knife_ssh/README.md
+%%DATADIR%%/plugins/knife_ssh/knife_ssh.plugin.zsh
+%%DATADIR%%/plugins/kops/README.md
+%%DATADIR%%/plugins/kops/kops.plugin.zsh
+%%DATADIR%%/plugins/kube-ps1/README.md
+%%DATADIR%%/plugins/kube-ps1/kube-ps1.plugin.zsh
+%%DATADIR%%/plugins/kubectl/README.md
+%%DATADIR%%/plugins/kubectl/kubectl.plugin.zsh
+%%DATADIR%%/plugins/laravel/README.md
+%%DATADIR%%/plugins/laravel/_artisan
+%%DATADIR%%/plugins/laravel/laravel.plugin.zsh
+%%DATADIR%%/plugins/laravel4/README.md
+%%DATADIR%%/plugins/laravel4/laravel4.plugin.zsh
+%%DATADIR%%/plugins/laravel5/README.md
+%%DATADIR%%/plugins/laravel5/laravel5.plugin.zsh
+%%DATADIR%%/plugins/last-working-dir/README.md
+%%DATADIR%%/plugins/last-working-dir/last-working-dir.plugin.zsh
+%%DATADIR%%/plugins/lein/README.md
+%%DATADIR%%/plugins/lein/_lein
+%%DATADIR%%/plugins/lighthouse/README.md
+%%DATADIR%%/plugins/lighthouse/lighthouse.plugin.zsh
+%%DATADIR%%/plugins/lol/README.md
+%%DATADIR%%/plugins/lol/lol.plugin.zsh
+%%DATADIR%%/plugins/lxd/README.md
+%%DATADIR%%/plugins/lxd/lxd.plugin.zsh
+%%DATADIR%%/plugins/macports/README.md
+%%DATADIR%%/plugins/macports/_port
+%%DATADIR%%/plugins/macports/macports.plugin.zsh
+%%DATADIR%%/plugins/magic-enter/README.md
+%%DATADIR%%/plugins/magic-enter/magic-enter.plugin.zsh
+%%DATADIR%%/plugins/man/README.md
+%%DATADIR%%/plugins/man/man.plugin.zsh
+%%DATADIR%%/plugins/marked2/README.md
+%%DATADIR%%/plugins/marked2/marked2.plugin.zsh
+%%DATADIR%%/plugins/mercurial/README.md
+%%DATADIR%%/plugins/mercurial/mercurial.plugin.zsh
+%%DATADIR%%/plugins/meteor/README.md
+%%DATADIR%%/plugins/meteor/_meteor
+%%DATADIR%%/plugins/meteor/meteor.plugin.zsh
+%%DATADIR%%/plugins/microk8s/README.md
+%%DATADIR%%/plugins/microk8s/microk8s.plugin.zsh
+%%DATADIR%%/plugins/minikube/README.md
+%%DATADIR%%/plugins/minikube/minikube.plugin.zsh
+%%DATADIR%%/plugins/mix-fast/README.md
+%%DATADIR%%/plugins/mix-fast/mix-fast.plugin.zsh
+%%DATADIR%%/plugins/mix/README.md
+%%DATADIR%%/plugins/mix/_mix
+%%DATADIR%%/plugins/mosh/README.md
+%%DATADIR%%/plugins/mosh/mosh.plugin.zsh
+%%DATADIR%%/plugins/mvn/README.md
+%%DATADIR%%/plugins/mvn/mvn.plugin.zsh
+%%DATADIR%%/plugins/mysql-macports/README.md
+%%DATADIR%%/plugins/mysql-macports/mysql-macports.plugin.zsh
+%%DATADIR%%/plugins/n98-magerun/README.md
+%%DATADIR%%/plugins/n98-magerun/n98-magerun.plugin.zsh
+%%DATADIR%%/plugins/nanoc/README.md
+%%DATADIR%%/plugins/nanoc/_nanoc
+%%DATADIR%%/plugins/nanoc/nanoc.plugin.zsh
+%%DATADIR%%/plugins/ng/README.md
+%%DATADIR%%/plugins/ng/ng.plugin.zsh
+%%DATADIR%%/plugins/nmap/README.md
+%%DATADIR%%/plugins/nmap/nmap.plugin.zsh
+%%DATADIR%%/plugins/node/README.md
+%%DATADIR%%/plugins/node/node.plugin.zsh
+%%DATADIR%%/plugins/nomad/README.md
+%%DATADIR%%/plugins/nomad/_nomad
+%%DATADIR%%/plugins/npm/README.md
+%%DATADIR%%/plugins/npm/npm.plugin.zsh
+%%DATADIR%%/plugins/npx/README.md
+%%DATADIR%%/plugins/npx/npx.plugin.zsh
+%%DATADIR%%/plugins/nvm/README.md
+%%DATADIR%%/plugins/nvm/_nvm
+%%DATADIR%%/plugins/nvm/nvm.plugin.zsh
+%%DATADIR%%/plugins/oc/README.md
+%%DATADIR%%/plugins/oc/oc.plugin.zsh
+%%DATADIR%%/plugins/osx/README.md
+%%DATADIR%%/plugins/osx/_security
+%%DATADIR%%/plugins/osx/music
+%%DATADIR%%/plugins/osx/osx.plugin.zsh
+%%DATADIR%%/plugins/osx/spotify
+%%DATADIR%%/plugins/otp/README.md
+%%DATADIR%%/plugins/otp/otp.plugin.zsh
+%%DATADIR%%/plugins/pass/README.md
+%%DATADIR%%/plugins/pass/_pass
+%%DATADIR%%/plugins/paver/README.md
+%%DATADIR%%/plugins/paver/paver.plugin.zsh
+%%DATADIR%%/plugins/pep8/README.md
+%%DATADIR%%/plugins/pep8/_pep8
+%%DATADIR%%/plugins/per-directory-history/README.md
+%%DATADIR%%/plugins/per-directory-history/per-directory-history.plugin.zsh
+%%DATADIR%%/plugins/per-directory-history/per-directory-history.zsh
+%%DATADIR%%/plugins/percol/README.md
+%%DATADIR%%/plugins/percol/percol.plugin.zsh
+%%DATADIR%%/plugins/perl/README.md
+%%DATADIR%%/plugins/perl/perl.plugin.zsh
+%%DATADIR%%/plugins/perms/README.md
+%%DATADIR%%/plugins/perms/perms.plugin.zsh
+%%DATADIR%%/plugins/phing/README.md
+%%DATADIR%%/plugins/phing/phing.plugin.zsh
+%%DATADIR%%/plugins/pip/README.md
+%%DATADIR%%/plugins/pip/_pip
+%%DATADIR%%/plugins/pip/pip.plugin.zsh
+%%DATADIR%%/plugins/pipenv/README.md
+%%DATADIR%%/plugins/pipenv/pipenv.plugin.zsh
+%%DATADIR%%/plugins/pj/README.md
+%%DATADIR%%/plugins/pj/pj.plugin.zsh
+%%DATADIR%%/plugins/please/README.md
+%%DATADIR%%/plugins/please/please.plugin.zsh
+%%DATADIR%%/plugins/pod/README.md
+%%DATADIR%%/plugins/pod/_pod
+%%DATADIR%%/plugins/postgres/README.md
+%%DATADIR%%/plugins/postgres/postgres.plugin.zsh
+%%DATADIR%%/plugins/pow/README.md
+%%DATADIR%%/plugins/pow/pow.plugin.zsh
+%%DATADIR%%/plugins/powder/README.md
+%%DATADIR%%/plugins/powder/_powder
+%%DATADIR%%/plugins/powify/README.md
+%%DATADIR%%/plugins/powify/_powify
+%%DATADIR%%/plugins/profiles/README.md
+%%DATADIR%%/plugins/profiles/profiles.plugin.zsh
+%%DATADIR%%/plugins/pyenv/README.md
+%%DATADIR%%/plugins/pyenv/pyenv.plugin.zsh
+%%DATADIR%%/plugins/pylint/README.md
+%%DATADIR%%/plugins/pylint/_pylint
+%%DATADIR%%/plugins/pylint/pylint.plugin.zsh
+%%DATADIR%%/plugins/python/README.md
+%%DATADIR%%/plugins/python/python.plugin.zsh
+%%DATADIR%%/plugins/rails/README.md
+%%DATADIR%%/plugins/rails/_rails
+%%DATADIR%%/plugins/rails/rails.plugin.zsh
+%%DATADIR%%/plugins/rake-fast/README.md
+%%DATADIR%%/plugins/rake-fast/rake-fast.plugin.zsh
+%%DATADIR%%/plugins/rake/README.md
+%%DATADIR%%/plugins/rake/rake.plugin.zsh
+%%DATADIR%%/plugins/rand-quote/README.md
+%%DATADIR%%/plugins/rand-quote/rand-quote.plugin.zsh
+%%DATADIR%%/plugins/rbenv/README.md
+%%DATADIR%%/plugins/rbenv/rbenv.plugin.zsh
+%%DATADIR%%/plugins/rbfu/README.md
+%%DATADIR%%/plugins/rbfu/rbfu.plugin.zsh
+%%DATADIR%%/plugins/react-native/README.md
+%%DATADIR%%/plugins/react-native/_react-native
+%%DATADIR%%/plugins/react-native/react-native.plugin.zsh
+%%DATADIR%%/plugins/rebar/README.md
+%%DATADIR%%/plugins/rebar/_rebar
+%%DATADIR%%/plugins/redis-cli/README.md
+%%DATADIR%%/plugins/redis-cli/_redis-cli
+%%DATADIR%%/plugins/repo/README.md
+%%DATADIR%%/plugins/repo/_repo
+%%DATADIR%%/plugins/repo/repo.plugin.zsh
+%%DATADIR%%/plugins/ripgrep/README.md
+%%DATADIR%%/plugins/ripgrep/_ripgrep
+%%DATADIR%%/plugins/ros/README.md
+%%DATADIR%%/plugins/ros/_ros
+%%DATADIR%%/plugins/rsync/README.md
+%%DATADIR%%/plugins/rsync/rsync.plugin.zsh
+%%DATADIR%%/plugins/ruby/README.md
+%%DATADIR%%/plugins/ruby/ruby.plugin.zsh
+%%DATADIR%%/plugins/rust/README.md
+%%DATADIR%%/plugins/rust/_rust
+%%DATADIR%%/plugins/rustup/README.md
+%%DATADIR%%/plugins/rustup/_rustup
+%%DATADIR%%/plugins/rvm/README.md
+%%DATADIR%%/plugins/rvm/rvm.plugin.zsh
+%%DATADIR%%/plugins/safe-paste/README.md
+%%DATADIR%%/plugins/safe-paste/safe-paste.plugin.zsh
+%%DATADIR%%/plugins/salt/README.md
+%%DATADIR%%/plugins/salt/_salt
+%%DATADIR%%/plugins/sbt/README.md
+%%DATADIR%%/plugins/sbt/_sbt
+%%DATADIR%%/plugins/sbt/sbt.plugin.zsh
+%%DATADIR%%/plugins/scala/README.md
+%%DATADIR%%/plugins/scala/_scala
+%%DATADIR%%/plugins/scd/README.md
+%%DATADIR%%/plugins/scd/scd
+%%DATADIR%%/plugins/scd/scd.plugin.zsh
+%%DATADIR%%/plugins/screen/README.md
+%%DATADIR%%/plugins/screen/screen.plugin.zsh
+%%DATADIR%%/plugins/scw/README.md
+%%DATADIR%%/plugins/scw/_scw
+%%DATADIR%%/plugins/sdk/README.md
+%%DATADIR%%/plugins/sdk/sdk.plugin.zsh
+%%DATADIR%%/plugins/sfdx/README.md
+%%DATADIR%%/plugins/sfdx/_sfdx
+%%DATADIR%%/plugins/sfffe/README.md
+%%DATADIR%%/plugins/sfffe/sfffe.plugin.zsh
+%%DATADIR%%/plugins/shell-proxy/README.md
+%%DATADIR%%/plugins/shell-proxy/proxy.py
+%%DATADIR%%/plugins/shell-proxy/shell-proxy.plugin.zsh
+%%DATADIR%%/plugins/shell-proxy/ssh-agent.py
+%%DATADIR%%/plugins/shell-proxy/ssh-proxy.py
+%%DATADIR%%/plugins/shrink-path/README.md
+%%DATADIR%%/plugins/shrink-path/shrink-path.plugin.zsh
+%%DATADIR%%/plugins/singlechar/README.md
+%%DATADIR%%/plugins/singlechar/singlechar.plugin.zsh
+%%DATADIR%%/plugins/spring/README.md
+%%DATADIR%%/plugins/spring/_spring
+%%DATADIR%%/plugins/sprunge/README.md
+%%DATADIR%%/plugins/sprunge/sprunge.plugin.zsh
+%%DATADIR%%/plugins/ssh-agent/README.md
+%%DATADIR%%/plugins/ssh-agent/ssh-agent.plugin.zsh
+%%DATADIR%%/plugins/stack/README.md
+%%DATADIR%%/plugins/stack/stack.plugin.zsh
+%%DATADIR%%/plugins/sublime/README.md
+%%DATADIR%%/plugins/sublime/sublime.plugin.zsh
+%%DATADIR%%/plugins/sudo/README.md
+%%DATADIR%%/plugins/sudo/sudo.plugin.zsh
+%%DATADIR%%/plugins/supervisor/README.md
+%%DATADIR%%/plugins/supervisor/_supervisorctl
+%%DATADIR%%/plugins/supervisor/_supervisord
+%%DATADIR%%/plugins/supervisor/supervisor.plugin.zsh
+%%DATADIR%%/plugins/suse/README.md
+%%DATADIR%%/plugins/suse/suse.plugin.zsh
+%%DATADIR%%/plugins/svcat/README.md
+%%DATADIR%%/plugins/svcat/svcat.plugin.zsh
+%%DATADIR%%/plugins/svn-fast-info/README.md
+%%DATADIR%%/plugins/svn-fast-info/svn-fast-info.plugin.zsh
+%%DATADIR%%/plugins/svn/README.md
+%%DATADIR%%/plugins/svn/svn.plugin.zsh
+%%DATADIR%%/plugins/swiftpm/README.md
+%%DATADIR%%/plugins/swiftpm/_swift
+%%DATADIR%%/plugins/swiftpm/swiftpm.plugin.zsh
+%%DATADIR%%/plugins/symfony/README.md
+%%DATADIR%%/plugins/symfony/symfony.plugin.zsh
+%%DATADIR%%/plugins/symfony2/README.md
+%%DATADIR%%/plugins/symfony2/symfony2.plugin.zsh
+%%DATADIR%%/plugins/systemadmin/README.md
+%%DATADIR%%/plugins/systemadmin/systemadmin.plugin.zsh
+%%DATADIR%%/plugins/systemd/README.md
+%%DATADIR%%/plugins/systemd/systemd.plugin.zsh
+%%DATADIR%%/plugins/taskwarrior/README.md
+%%DATADIR%%/plugins/taskwarrior/_task
+%%DATADIR%%/plugins/taskwarrior/taskwarrior.plugin.zsh
+%%DATADIR%%/plugins/terminitor/README.md
+%%DATADIR%%/plugins/terminitor/_terminitor
+%%DATADIR%%/plugins/terraform/README.md
+%%DATADIR%%/plugins/terraform/_terraform
+%%DATADIR%%/plugins/terraform/terraform.plugin.zsh
+%%DATADIR%%/plugins/textastic/README.md
+%%DATADIR%%/plugins/textastic/textastic.plugin.zsh
+%%DATADIR%%/plugins/textmate/README.md
+%%DATADIR%%/plugins/textmate/textmate.plugin.zsh
+%%DATADIR%%/plugins/thefuck/README.md
+%%DATADIR%%/plugins/thefuck/thefuck.plugin.zsh
+%%DATADIR%%/plugins/themes/README.md
+%%DATADIR%%/plugins/themes/themes.plugin.zsh
+%%DATADIR%%/plugins/thor/README.md
+%%DATADIR%%/plugins/thor/_thor
+%%DATADIR%%/plugins/tig/README.md
+%%DATADIR%%/plugins/tig/tig.plugin.zsh
+%%DATADIR%%/plugins/timer/README.md
+%%DATADIR%%/plugins/timer/timer.plugin.zsh
+%%DATADIR%%/plugins/tmux-cssh/README.md
+%%DATADIR%%/plugins/tmux-cssh/_tmux-cssh
+%%DATADIR%%/plugins/tmux/README.md
+%%DATADIR%%/plugins/tmux/tmux.extra.conf
+%%DATADIR%%/plugins/tmux/tmux.only.conf
+%%DATADIR%%/plugins/tmux/tmux.plugin.zsh
+%%DATADIR%%/plugins/tmuxinator/README.md
+%%DATADIR%%/plugins/tmuxinator/_tmuxinator
+%%DATADIR%%/plugins/tmuxinator/tmuxinator.plugin.zsh
+%%DATADIR%%/plugins/torrent/README.md
+%%DATADIR%%/plugins/torrent/torrent.plugin.zsh
+%%DATADIR%%/plugins/transfer/README.md
+%%DATADIR%%/plugins/transfer/transfer.plugin.zsh
+%%DATADIR%%/plugins/tugboat/README.md
+%%DATADIR%%/plugins/tugboat/_tugboat
+%%DATADIR%%/plugins/ubuntu/README.md
+%%DATADIR%%/plugins/ubuntu/ubuntu.plugin.zsh
+%%DATADIR%%/plugins/ufw/README.md
+%%DATADIR%%/plugins/ufw/_ufw
+%%DATADIR%%/plugins/urltools/README.md
+%%DATADIR%%/plugins/urltools/urltools.plugin.zsh
+%%DATADIR%%/plugins/vagrant-prompt/README.md
+%%DATADIR%%/plugins/vagrant-prompt/vagrant-prompt.plugin.zsh
+%%DATADIR%%/plugins/vagrant/README.md
+%%DATADIR%%/plugins/vagrant/_vagrant
+%%DATADIR%%/plugins/vagrant/vagrant.plugin.zsh
+%%DATADIR%%/plugins/vault/README.md
+%%DATADIR%%/plugins/vault/_vault
+%%DATADIR%%/plugins/vi-mode/README.md
+%%DATADIR%%/plugins/vi-mode/vi-mode.plugin.zsh
+%%DATADIR%%/plugins/vim-interaction/README.md
+%%DATADIR%%/plugins/vim-interaction/vim-interaction.plugin.zsh
+%%DATADIR%%/plugins/virtualenv/README.md
+%%DATADIR%%/plugins/virtualenv/virtualenv.plugin.zsh
+%%DATADIR%%/plugins/virtualenvwrapper/README.md
+%%DATADIR%%/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh
+%%DATADIR%%/plugins/vscode/README.md
+%%DATADIR%%/plugins/vscode/vscode.plugin.zsh
+%%DATADIR%%/plugins/vundle/README.md
+%%DATADIR%%/plugins/vundle/vundle.plugin.zsh
+%%DATADIR%%/plugins/wakeonlan/README.md
+%%DATADIR%%/plugins/wakeonlan/_wake
+%%DATADIR%%/plugins/wakeonlan/wakeonlan.plugin.zsh
+%%DATADIR%%/plugins/wd/LICENSE
+%%DATADIR%%/plugins/wd/README.md
+%%DATADIR%%/plugins/wd/_wd.sh
+%%DATADIR%%/plugins/wd/wd.plugin.zsh
+%%DATADIR%%/plugins/wd/wd.sh
+%%DATADIR%%/plugins/web-search/README.md
+%%DATADIR%%/plugins/web-search/web-search.plugin.zsh
+%%DATADIR%%/plugins/wp-cli/README.md
+%%DATADIR%%/plugins/wp-cli/wp-cli.plugin.zsh
+%%DATADIR%%/plugins/xcode/README.md
+%%DATADIR%%/plugins/xcode/_xcselv
+%%DATADIR%%/plugins/xcode/xcode.plugin.zsh
+%%DATADIR%%/plugins/yarn/README.md
+%%DATADIR%%/plugins/yarn/_yarn
+%%DATADIR%%/plugins/yarn/yarn.plugin.zsh
+%%DATADIR%%/plugins/yii/README.md
+%%DATADIR%%/plugins/yii/yii.plugin.zsh
+%%DATADIR%%/plugins/yii2/README.md
+%%DATADIR%%/plugins/yii2/yii2.plugin.zsh
+%%DATADIR%%/plugins/yum/README.md
+%%DATADIR%%/plugins/yum/yum.plugin.zsh
+%%DATADIR%%/plugins/z/Makefile
+%%DATADIR%%/plugins/z/README
+%%DATADIR%%/plugins/z/README.md
+%%DATADIR%%/plugins/z/z.1
+%%DATADIR%%/plugins/z/z.plugin.zsh
+%%DATADIR%%/plugins/z/z.sh
+%%DATADIR%%/plugins/zeus/README.md
+%%DATADIR%%/plugins/zeus/_zeus
+%%DATADIR%%/plugins/zeus/zeus.plugin.zsh
+%%DATADIR%%/plugins/zsh-interactive-cd/README.md
+%%DATADIR%%/plugins/zsh-interactive-cd/zsh-interactive-cd.plugin.zsh
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/README.txt
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-aliases.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-cd.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-env.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-functions.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-history.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-kill.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-list.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-options.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/.config/znt/n-panelize.conf
+%%DATADIR%%/plugins/zsh-navigation-tools/LICENSE
+%%DATADIR%%/plugins/zsh-navigation-tools/Makefile
+%%DATADIR%%/plugins/zsh-navigation-tools/NEWS
+%%DATADIR%%/plugins/zsh-navigation-tools/README.md
+%%DATADIR%%/plugins/zsh-navigation-tools/_n-kill
+%%DATADIR%%/plugins/zsh-navigation-tools/n-aliases
+%%DATADIR%%/plugins/zsh-navigation-tools/n-cd
+%%DATADIR%%/plugins/zsh-navigation-tools/n-env
+%%DATADIR%%/plugins/zsh-navigation-tools/n-functions
+%%DATADIR%%/plugins/zsh-navigation-tools/n-help
+%%DATADIR%%/plugins/zsh-navigation-tools/n-history
+%%DATADIR%%/plugins/zsh-navigation-tools/n-kill
+%%DATADIR%%/plugins/zsh-navigation-tools/n-list
+%%DATADIR%%/plugins/zsh-navigation-tools/n-list-draw
+%%DATADIR%%/plugins/zsh-navigation-tools/n-list-input
+%%DATADIR%%/plugins/zsh-navigation-tools/n-options
+%%DATADIR%%/plugins/zsh-navigation-tools/n-panelize
+%%DATADIR%%/plugins/zsh-navigation-tools/znt-cd-widget
+%%DATADIR%%/plugins/zsh-navigation-tools/znt-history-widget
+%%DATADIR%%/plugins/zsh-navigation-tools/znt-kill-widget
+%%DATADIR%%/plugins/zsh-navigation-tools/znt-tmux.zsh
+%%DATADIR%%/plugins/zsh-navigation-tools/znt-usetty-wrapper
+%%DATADIR%%/plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh
+%%DATADIR%%/plugins/zsh_reload/README.md
+%%DATADIR%%/plugins/zsh_reload/zsh_reload.plugin.zsh
+%%DATADIR%%/templates/zshrc.zsh-template
+%%DATADIR%%/themes/3den.zsh-theme
+%%DATADIR%%/themes/Soliah.zsh-theme
+%%DATADIR%%/themes/adben.zsh-theme
+%%DATADIR%%/themes/af-magic.zsh-theme
+%%DATADIR%%/themes/afowler.zsh-theme
+%%DATADIR%%/themes/agnoster.zsh-theme
+%%DATADIR%%/themes/alanpeabody.zsh-theme
+%%DATADIR%%/themes/amuse.zsh-theme
+%%DATADIR%%/themes/apple.zsh-theme
+%%DATADIR%%/themes/arrow.zsh-theme
+%%DATADIR%%/themes/aussiegeek.zsh-theme
+%%DATADIR%%/themes/avit.zsh-theme
+%%DATADIR%%/themes/awesomepanda.zsh-theme
+%%DATADIR%%/themes/bira.zsh-theme
+%%DATADIR%%/themes/blinks.zsh-theme
+%%DATADIR%%/themes/bureau.zsh-theme
+%%DATADIR%%/themes/candy-kingdom.zsh-theme
+%%DATADIR%%/themes/candy.zsh-theme
+%%DATADIR%%/themes/clean.zsh-theme
+%%DATADIR%%/themes/cloud.zsh-theme
+%%DATADIR%%/themes/crcandy.zsh-theme
+%%DATADIR%%/themes/crunch.zsh-theme
+%%DATADIR%%/themes/cypher.zsh-theme
+%%DATADIR%%/themes/dallas.zsh-theme
+%%DATADIR%%/themes/darkblood.zsh-theme
+%%DATADIR%%/themes/daveverwer.zsh-theme
+%%DATADIR%%/themes/dieter.zsh-theme
+%%DATADIR%%/themes/dogenpunk.zsh-theme
+%%DATADIR%%/themes/dpoggi.zsh-theme
+%%DATADIR%%/themes/dst.zsh-theme
+%%DATADIR%%/themes/dstufft.zsh-theme
+%%DATADIR%%/themes/duellj.zsh-theme
+%%DATADIR%%/themes/eastwood.zsh-theme
+%%DATADIR%%/themes/edvardm.zsh-theme
+%%DATADIR%%/themes/emotty.zsh-theme
+%%DATADIR%%/themes/essembeh.zsh-theme
+%%DATADIR%%/themes/evan.zsh-theme
+%%DATADIR%%/themes/fino-time.zsh-theme
+%%DATADIR%%/themes/fino.zsh-theme
+%%DATADIR%%/themes/fishy.zsh-theme
+%%DATADIR%%/themes/flazz.zsh-theme
+%%DATADIR%%/themes/fletcherm.zsh-theme
+%%DATADIR%%/themes/fox.zsh-theme
+%%DATADIR%%/themes/frisk.zsh-theme
+%%DATADIR%%/themes/frontcube.zsh-theme
+%%DATADIR%%/themes/funky.zsh-theme
+%%DATADIR%%/themes/fwalch.zsh-theme
+%%DATADIR%%/themes/gallifrey.zsh-theme
+%%DATADIR%%/themes/gallois.zsh-theme
+%%DATADIR%%/themes/garyblessington.zsh-theme
+%%DATADIR%%/themes/gentoo.zsh-theme
+%%DATADIR%%/themes/geoffgarside.zsh-theme
+%%DATADIR%%/themes/gianu.zsh-theme
+%%DATADIR%%/themes/gnzh.zsh-theme
+%%DATADIR%%/themes/gozilla.zsh-theme
+%%DATADIR%%/themes/half-life.zsh-theme
+%%DATADIR%%/themes/humza.zsh-theme
+%%DATADIR%%/themes/imajes.zsh-theme
+%%DATADIR%%/themes/intheloop.zsh-theme
+%%DATADIR%%/themes/itchy.zsh-theme
+%%DATADIR%%/themes/jaischeema.zsh-theme
+%%DATADIR%%/themes/jbergantine.zsh-theme
+%%DATADIR%%/themes/jispwoso.zsh-theme
+%%DATADIR%%/themes/jnrowe.zsh-theme
+%%DATADIR%%/themes/jonathan.zsh-theme
+%%DATADIR%%/themes/josh.zsh-theme
+%%DATADIR%%/themes/jreese.zsh-theme
+%%DATADIR%%/themes/jtriley.zsh-theme
+%%DATADIR%%/themes/juanghurtado.zsh-theme
+%%DATADIR%%/themes/junkfood.zsh-theme
+%%DATADIR%%/themes/kafeitu.zsh-theme
+%%DATADIR%%/themes/kardan.zsh-theme
+%%DATADIR%%/themes/kennethreitz.zsh-theme
+%%DATADIR%%/themes/kiwi.zsh-theme
+%%DATADIR%%/themes/kolo.zsh-theme
+%%DATADIR%%/themes/kphoen.zsh-theme
+%%DATADIR%%/themes/lambda.zsh-theme
+%%DATADIR%%/themes/linuxonly.zsh-theme
+%%DATADIR%%/themes/lukerandall.zsh-theme
+%%DATADIR%%/themes/macovsky-ruby.zsh-theme
+%%DATADIR%%/themes/macovsky.zsh-theme
+%%DATADIR%%/themes/maran.zsh-theme
+%%DATADIR%%/themes/mgutz.zsh-theme
+%%DATADIR%%/themes/mh.zsh-theme
+%%DATADIR%%/themes/michelebologna.zsh-theme
+%%DATADIR%%/themes/mikeh.zsh-theme
+%%DATADIR%%/themes/miloshadzic.zsh-theme
+%%DATADIR%%/themes/minimal.zsh-theme
+%%DATADIR%%/themes/mira.zsh-theme
+%%DATADIR%%/themes/mlh.zsh-theme
+%%DATADIR%%/themes/mortalscumbag.zsh-theme
+%%DATADIR%%/themes/mrtazz.zsh-theme
+%%DATADIR%%/themes/murilasso.zsh-theme
+%%DATADIR%%/themes/muse.zsh-theme
+%%DATADIR%%/themes/nanotech.zsh-theme
+%%DATADIR%%/themes/nebirhos.zsh-theme
+%%DATADIR%%/themes/nicoulaj.zsh-theme
+%%DATADIR%%/themes/norm.zsh-theme
+%%DATADIR%%/themes/obraun.zsh-theme
+%%DATADIR%%/themes/peepcode.zsh-theme
+%%DATADIR%%/themes/philips.zsh-theme
+%%DATADIR%%/themes/pmcgee.zsh-theme
+%%DATADIR%%/themes/pygmalion-virtualenv.zsh-theme
+%%DATADIR%%/themes/pygmalion.zsh-theme
+%%DATADIR%%/themes/random.zsh-theme
+%%DATADIR%%/themes/re5et.zsh-theme
+%%DATADIR%%/themes/refined.zsh-theme
+%%DATADIR%%/themes/rgm.zsh-theme
+%%DATADIR%%/themes/risto.zsh-theme
+%%DATADIR%%/themes/rixius.zsh-theme
+%%DATADIR%%/themes/rkj-repos.zsh-theme
+%%DATADIR%%/themes/rkj.zsh-theme
+%%DATADIR%%/themes/robbyrussell.zsh-theme
+%%DATADIR%%/themes/sammy.zsh-theme
+%%DATADIR%%/themes/simonoff.zsh-theme
+%%DATADIR%%/themes/simple.zsh-theme
+%%DATADIR%%/themes/skaro.zsh-theme
+%%DATADIR%%/themes/smt.zsh-theme
+%%DATADIR%%/themes/sonicradish.zsh-theme
+%%DATADIR%%/themes/sorin.zsh-theme
+%%DATADIR%%/themes/sporty_256.zsh-theme
+%%DATADIR%%/themes/steeef.zsh-theme
+%%DATADIR%%/themes/strug.zsh-theme
+%%DATADIR%%/themes/sunaku.zsh-theme
+%%DATADIR%%/themes/sunrise.zsh-theme
+%%DATADIR%%/themes/superjarin.zsh-theme
+%%DATADIR%%/themes/suvash.zsh-theme
+%%DATADIR%%/themes/takashiyoshida.zsh-theme
+%%DATADIR%%/themes/terminalparty.zsh-theme
+%%DATADIR%%/themes/theunraveler.zsh-theme
+%%DATADIR%%/themes/tjkirch.zsh-theme
+%%DATADIR%%/themes/tjkirch_mod.zsh-theme
+%%DATADIR%%/themes/tonotdo.zsh-theme
+%%DATADIR%%/themes/trapd00r.zsh-theme
+%%DATADIR%%/themes/wedisagree.zsh-theme
+%%DATADIR%%/themes/wezm+.zsh-theme
+%%DATADIR%%/themes/wezm.zsh-theme
+%%DATADIR%%/themes/wuffers.zsh-theme
+%%DATADIR%%/themes/xiong-chiamiov-plus.zsh-theme
+%%DATADIR%%/themes/xiong-chiamiov.zsh-theme
+%%DATADIR%%/themes/ys.zsh-theme
+%%DATADIR%%/themes/zhann.zsh-theme
+%%DATADIR%%/tools/require_tool.sh
+%%DATADIR%%/tools/theme_chooser.sh



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007080954.0689sqqZ021747>