diff --git a/.config/zsh/config/init.zsh b/.config/zsh/config/init.zsh index f08a90d..40658fe 100644 --- a/.config/zsh/config/init.zsh +++ b/.config/zsh/config/init.zsh @@ -7,9 +7,10 @@ configure() { init() { local wkdir="${BASE_ZSH_CONFIG_DIR}/config" source "${wkdir}/themes/init.zsh" - source "${wkdir}/omz-init.zsh" source "${wkdir}/profile/init.zsh" source "${wkdir}/style/init.zsh" + source "${wkdir}/omz/init.zsh" + source "${wkdir}/plugins/init.zsh" configure } diff --git a/.config/zsh/config/omz-init.zsh b/.config/zsh/config/omz/init.zsh similarity index 100% rename from .config/zsh/config/omz-init.zsh rename to .config/zsh/config/omz/init.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-kitty/functions/__kitty_complete b/.config/zsh/config/omz/plugins/zsh-kitty/functions/__kitty_complete deleted file mode 100644 index 2acfef2..0000000 --- a/.config/zsh/config/omz/plugins/zsh-kitty/functions/__kitty_complete +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env zsh - -__kitty_complete() { - # load kitty completions if in kitty - if test "$TERM" = "xterm-kitty"; then - if (( $+commands[kitty] )); then - eval "$(kitty + complete setup zsh)" - fi - fi -} - diff --git a/.config/zsh/config/omz/plugins/zsh-kitty/license.md b/.config/zsh/config/omz/plugins/zsh-kitty/license.md deleted file mode 100644 index 02821ee..0000000 --- a/.config/zsh/config/omz/plugins/zsh-kitty/license.md +++ /dev/null @@ -1,20 +0,0 @@ -# The MIT License (MIT) -> Copyright (c) Gabe Dunn 2021 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/.config/zsh/config/omz/plugins/zsh-kitty/readme.md b/.config/zsh/config/omz/plugins/zsh-kitty/readme.md deleted file mode 100644 index 94a83de..0000000 --- a/.config/zsh/config/omz/plugins/zsh-kitty/readme.md +++ /dev/null @@ -1,31 +0,0 @@ -# kitty -> kitty is a zsh plugin that provides completions for the `kitty` terminal emulator. - -## Installing - -### zinit -Add this to your zinit config (.zshrc): -```zsh -zinit light redxtech/zsh-kitty - -# it also works with turbo mode: -zinit ice wait lucid -zinit load redxtech/zsh-kitty -``` - -### oh-my-zsh -Install it with your favourite zsh package manager, or clone it directly to your -`$ZSH_CUSTOM/plugins` directory with git, and add `zsh-kitty` to the plugins -array in your `.zshrc` file: - -```zsh -plugins=(... zsh-kitty) -``` - -## Usage -Once you install it, you just need to run `__kitty_complete` (put it somewhere in your `.zshrc` -after loading your plugins), and completions for the `kitty` command should work! - -## Author -**kitty** © [Gabe Dunn](https://github.com/redxtech), Released under the [MIT](./license.md) License. - diff --git a/.config/zsh/config/omz/plugins/zsh-kitty/zsh-kitty.plugin.zsh b/.config/zsh/config/omz/plugins/zsh-kitty/zsh-kitty.plugin.zsh deleted file mode 100755 index 9f5c9c7..0000000 --- a/.config/zsh/config/omz/plugins/zsh-kitty/zsh-kitty.plugin.zsh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env zsh - -# zsh plugin to clone a package from the AUR and install it with makepkg - -# add the functions to the function path & autoload them -fpath+=("$(dirname ${0})/functions") -autoload -Uz __kitty_complete - diff --git a/.config/zsh/config/omz/plugins/fzf-tab/.gitattributes b/.config/zsh/config/plugins/fzf-tab/.gitattributes similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/.gitattributes rename to .config/zsh/config/plugins/fzf-tab/.gitattributes diff --git a/.config/zsh/config/omz/plugins/fzf-tab/.github/ISSUE_TEMPLATE/bug_report.md b/.config/zsh/config/plugins/fzf-tab/.github/ISSUE_TEMPLATE/bug_report.md similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/.github/ISSUE_TEMPLATE/bug_report.md rename to .config/zsh/config/plugins/fzf-tab/.github/ISSUE_TEMPLATE/bug_report.md diff --git a/.config/zsh/config/omz/plugins/fzf-tab/.github/ISSUE_TEMPLATE/feature_request.md b/.config/zsh/config/plugins/fzf-tab/.github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/.github/ISSUE_TEMPLATE/feature_request.md rename to .config/zsh/config/plugins/fzf-tab/.github/ISSUE_TEMPLATE/feature_request.md diff --git a/.config/zsh/config/omz/plugins/fzf-tab/.github/ISSUE_TEMPLATE/question.md b/.config/zsh/config/plugins/fzf-tab/.github/ISSUE_TEMPLATE/question.md similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/.github/ISSUE_TEMPLATE/question.md rename to .config/zsh/config/plugins/fzf-tab/.github/ISSUE_TEMPLATE/question.md diff --git a/.config/zsh/config/omz/plugins/fzf-tab/.github/workflows/ci.yaml b/.config/zsh/config/plugins/fzf-tab/.github/workflows/ci.yaml similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/.github/workflows/ci.yaml rename to .config/zsh/config/plugins/fzf-tab/.github/workflows/ci.yaml diff --git a/.config/zsh/config/omz/plugins/fzf-tab/.gitignore b/.config/zsh/config/plugins/fzf-tab/.gitignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/.gitignore rename to .config/zsh/config/plugins/fzf-tab/.gitignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/LICENSE b/.config/zsh/config/plugins/fzf-tab/LICENSE similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/LICENSE rename to .config/zsh/config/plugins/fzf-tab/LICENSE diff --git a/.config/zsh/config/omz/plugins/fzf-tab/README.md b/.config/zsh/config/plugins/fzf-tab/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/README.md rename to .config/zsh/config/plugins/fzf-tab/README.md diff --git a/.config/zsh/config/omz/plugins/fzf-tab/fzf-tab.plugin.zsh b/.config/zsh/config/plugins/fzf-tab/fzf-tab.plugin.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/fzf-tab.plugin.zsh rename to .config/zsh/config/plugins/fzf-tab/fzf-tab.plugin.zsh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/fzf-tab.zsh b/.config/zsh/config/plugins/fzf-tab/fzf-tab.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/fzf-tab.zsh rename to .config/zsh/config/plugins/fzf-tab/fzf-tab.zsh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-colorize b/.config/zsh/config/plugins/fzf-tab/lib/-ftb-colorize similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-colorize rename to .config/zsh/config/plugins/fzf-tab/lib/-ftb-colorize diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-fzf b/.config/zsh/config/plugins/fzf-tab/lib/-ftb-fzf similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-fzf rename to .config/zsh/config/plugins/fzf-tab/lib/-ftb-fzf diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-generate-complist b/.config/zsh/config/plugins/fzf-tab/lib/-ftb-generate-complist similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-generate-complist rename to .config/zsh/config/plugins/fzf-tab/lib/-ftb-generate-complist diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-generate-header b/.config/zsh/config/plugins/fzf-tab/lib/-ftb-generate-header similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-generate-header rename to .config/zsh/config/plugins/fzf-tab/lib/-ftb-generate-header diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-generate-query b/.config/zsh/config/plugins/fzf-tab/lib/-ftb-generate-query similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/-ftb-generate-query rename to .config/zsh/config/plugins/fzf-tab/lib/-ftb-generate-query diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/ftb-switch-group b/.config/zsh/config/plugins/fzf-tab/lib/ftb-switch-group similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/ftb-switch-group rename to .config/zsh/config/plugins/fzf-tab/lib/ftb-switch-group diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/ftb-tmux-popup b/.config/zsh/config/plugins/fzf-tab/lib/ftb-tmux-popup similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/ftb-tmux-popup rename to .config/zsh/config/plugins/fzf-tab/lib/ftb-tmux-popup diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/zsh-ls-colors/LICENSE b/.config/zsh/config/plugins/fzf-tab/lib/zsh-ls-colors/LICENSE similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/zsh-ls-colors/LICENSE rename to .config/zsh/config/plugins/fzf-tab/lib/zsh-ls-colors/LICENSE diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/zsh-ls-colors/README.md b/.config/zsh/config/plugins/fzf-tab/lib/zsh-ls-colors/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/zsh-ls-colors/README.md rename to .config/zsh/config/plugins/fzf-tab/lib/zsh-ls-colors/README.md diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/zsh-ls-colors/demo b/.config/zsh/config/plugins/fzf-tab/lib/zsh-ls-colors/demo similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/zsh-ls-colors/demo rename to .config/zsh/config/plugins/fzf-tab/lib/zsh-ls-colors/demo diff --git a/.config/zsh/config/omz/plugins/fzf-tab/lib/zsh-ls-colors/ls-colors.zsh b/.config/zsh/config/plugins/fzf-tab/lib/zsh-ls-colors/ls-colors.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/lib/zsh-ls-colors/ls-colors.zsh rename to .config/zsh/config/plugins/fzf-tab/lib/zsh-ls-colors/ls-colors.zsh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/.cvsignore b/.config/zsh/config/plugins/fzf-tab/modules/.cvsignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/.cvsignore rename to .config/zsh/config/plugins/fzf-tab/modules/.cvsignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/.distfiles b/.config/zsh/config/plugins/fzf-tab/modules/.distfiles similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/.distfiles rename to .config/zsh/config/plugins/fzf-tab/modules/.distfiles diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/.editorconfig b/.config/zsh/config/plugins/fzf-tab/modules/.editorconfig similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/.editorconfig rename to .config/zsh/config/plugins/fzf-tab/modules/.editorconfig diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/.gitignore b/.config/zsh/config/plugins/fzf-tab/modules/.gitignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/.gitignore rename to .config/zsh/config/plugins/fzf-tab/modules/.gitignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/.preconfig b/.config/zsh/config/plugins/fzf-tab/modules/.preconfig similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/.preconfig rename to .config/zsh/config/plugins/fzf-tab/modules/.preconfig diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/.cvsignore b/.config/zsh/config/plugins/fzf-tab/modules/Config/.cvsignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/.cvsignore rename to .config/zsh/config/plugins/fzf-tab/modules/Config/.cvsignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/.distfiles b/.config/zsh/config/plugins/fzf-tab/modules/Config/.distfiles similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/.distfiles rename to .config/zsh/config/plugins/fzf-tab/modules/Config/.distfiles diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/aczshoot.m4 b/.config/zsh/config/plugins/fzf-tab/modules/Config/aczshoot.m4 similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/aczshoot.m4 rename to .config/zsh/config/plugins/fzf-tab/modules/Config/aczshoot.m4 diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/clean.mk b/.config/zsh/config/plugins/fzf-tab/modules/Config/clean.mk similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/clean.mk rename to .config/zsh/config/plugins/fzf-tab/modules/Config/clean.mk diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/config.mk b/.config/zsh/config/plugins/fzf-tab/modules/Config/config.mk similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/config.mk rename to .config/zsh/config/plugins/fzf-tab/modules/Config/config.mk diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/defs.mk.in b/.config/zsh/config/plugins/fzf-tab/modules/Config/defs.mk.in similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/defs.mk.in rename to .config/zsh/config/plugins/fzf-tab/modules/Config/defs.mk.in diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/installfns.sh b/.config/zsh/config/plugins/fzf-tab/modules/Config/installfns.sh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/installfns.sh rename to .config/zsh/config/plugins/fzf-tab/modules/Config/installfns.sh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/uninstallfns.sh b/.config/zsh/config/plugins/fzf-tab/modules/Config/uninstallfns.sh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/uninstallfns.sh rename to .config/zsh/config/plugins/fzf-tab/modules/Config/uninstallfns.sh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Config/version.mk b/.config/zsh/config/plugins/fzf-tab/modules/Config/version.mk similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Config/version.mk rename to .config/zsh/config/plugins/fzf-tab/modules/Config/version.mk diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/LICENCE b/.config/zsh/config/plugins/fzf-tab/modules/LICENCE similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/LICENCE rename to .config/zsh/config/plugins/fzf-tab/modules/LICENCE diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Makefile.in b/.config/zsh/config/plugins/fzf-tab/modules/Makefile.in similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Makefile.in rename to .config/zsh/config/plugins/fzf-tab/modules/Makefile.in diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/RECOMPILE_REQUEST b/.config/zsh/config/plugins/fzf-tab/modules/RECOMPILE_REQUEST similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/RECOMPILE_REQUEST rename to .config/zsh/config/plugins/fzf-tab/modules/RECOMPILE_REQUEST diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/.cvsignore b/.config/zsh/config/plugins/fzf-tab/modules/Src/.cvsignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/.cvsignore rename to .config/zsh/config/plugins/fzf-tab/modules/Src/.cvsignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/.distfiles b/.config/zsh/config/plugins/fzf-tab/modules/Src/.distfiles similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/.distfiles rename to .config/zsh/config/plugins/fzf-tab/modules/Src/.distfiles diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/.exrc b/.config/zsh/config/plugins/fzf-tab/modules/Src/.exrc similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/.exrc rename to .config/zsh/config/plugins/fzf-tab/modules/Src/.exrc diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/.indent.pro b/.config/zsh/config/plugins/fzf-tab/modules/Src/.indent.pro similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/.indent.pro rename to .config/zsh/config/plugins/fzf-tab/modules/Src/.indent.pro diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/Makefile.in b/.config/zsh/config/plugins/fzf-tab/modules/Src/Makefile.in similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/Makefile.in rename to .config/zsh/config/plugins/fzf-tab/modules/Src/Makefile.in diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/Makemod.in.in b/.config/zsh/config/plugins/fzf-tab/modules/Src/Makemod.in.in similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/Makemod.in.in rename to .config/zsh/config/plugins/fzf-tab/modules/Src/Makemod.in.in diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/.cvsignore b/.config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/.cvsignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/.cvsignore rename to .config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/.cvsignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/.distfiles b/.config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/.distfiles similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/.distfiles rename to .config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/.distfiles diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/.exrc b/.config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/.exrc similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/.exrc rename to .config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/.exrc diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/.gitignore b/.config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/.gitignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/.gitignore rename to .config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/.gitignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/fzftab.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/fzftab.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/fzftab.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/fzftab.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/fzftab.mdd b/.config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/fzftab.mdd similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/aloxaf/fzftab.mdd rename to .config/zsh/config/plugins/fzf-tab/modules/Src/aloxaf/fzftab.mdd diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/builtin.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/builtin.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/builtin.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/builtin.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/compat.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/compat.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/compat.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/compat.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/exec.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/exec.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/exec.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/exec.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/glob.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/glob.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/glob.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/glob.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/hashtable.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/hashtable.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/hashtable.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/hashtable.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/hashtable.h b/.config/zsh/config/plugins/fzf-tab/modules/Src/hashtable.h similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/hashtable.h rename to .config/zsh/config/plugins/fzf-tab/modules/Src/hashtable.h diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/init.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/init.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/init.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/init.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/input.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/input.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/input.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/input.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/jobs.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/jobs.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/jobs.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/jobs.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/lex.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/lex.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/lex.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/lex.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/loop.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/loop.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/loop.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/loop.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/makepro.awk b/.config/zsh/config/plugins/fzf-tab/modules/Src/makepro.awk similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/makepro.awk rename to .config/zsh/config/plugins/fzf-tab/modules/Src/makepro.awk diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/mem.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/mem.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/mem.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/mem.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/mkbltnmlst.sh b/.config/zsh/config/plugins/fzf-tab/modules/Src/mkbltnmlst.sh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/mkbltnmlst.sh rename to .config/zsh/config/plugins/fzf-tab/modules/Src/mkbltnmlst.sh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/mkmakemod.sh b/.config/zsh/config/plugins/fzf-tab/modules/Src/mkmakemod.sh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/mkmakemod.sh rename to .config/zsh/config/plugins/fzf-tab/modules/Src/mkmakemod.sh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/module.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/module.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/module.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/module.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/options.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/options.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/options.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/options.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/params.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/params.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/params.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/params.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/parse.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/parse.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/parse.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/parse.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/pattern.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/pattern.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/pattern.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/pattern.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/prompt.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/prompt.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/prompt.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/prompt.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/prototypes.h b/.config/zsh/config/plugins/fzf-tab/modules/Src/prototypes.h similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/prototypes.h rename to .config/zsh/config/plugins/fzf-tab/modules/Src/prototypes.h diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/signals.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/signals.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/signals.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/signals.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/signals.h b/.config/zsh/config/plugins/fzf-tab/modules/Src/signals.h similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/signals.h rename to .config/zsh/config/plugins/fzf-tab/modules/Src/signals.h diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/signames1.awk b/.config/zsh/config/plugins/fzf-tab/modules/Src/signames1.awk similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/signames1.awk rename to .config/zsh/config/plugins/fzf-tab/modules/Src/signames1.awk diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/signames2.awk b/.config/zsh/config/plugins/fzf-tab/modules/Src/signames2.awk similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/signames2.awk rename to .config/zsh/config/plugins/fzf-tab/modules/Src/signames2.awk diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/string.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/string.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/string.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/string.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/utils.c b/.config/zsh/config/plugins/fzf-tab/modules/Src/utils.c similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/utils.c rename to .config/zsh/config/plugins/fzf-tab/modules/Src/utils.c diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/wcwidth9.h b/.config/zsh/config/plugins/fzf-tab/modules/Src/wcwidth9.h similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/wcwidth9.h rename to .config/zsh/config/plugins/fzf-tab/modules/Src/wcwidth9.h diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/zsh.h b/.config/zsh/config/plugins/fzf-tab/modules/Src/zsh.h similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/zsh.h rename to .config/zsh/config/plugins/fzf-tab/modules/Src/zsh.h diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/zsh.mdd b/.config/zsh/config/plugins/fzf-tab/modules/Src/zsh.mdd similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/zsh.mdd rename to .config/zsh/config/plugins/fzf-tab/modules/Src/zsh.mdd diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/zsh.rc b/.config/zsh/config/plugins/fzf-tab/modules/Src/zsh.rc similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/zsh.rc rename to .config/zsh/config/plugins/fzf-tab/modules/Src/zsh.rc diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/zsh_system.h b/.config/zsh/config/plugins/fzf-tab/modules/Src/zsh_system.h similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/zsh_system.h rename to .config/zsh/config/plugins/fzf-tab/modules/Src/zsh_system.h diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Src/ztype.h b/.config/zsh/config/plugins/fzf-tab/modules/Src/ztype.h similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Src/ztype.h rename to .config/zsh/config/plugins/fzf-tab/modules/Src/ztype.h diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/.cvsignore b/.config/zsh/config/plugins/fzf-tab/modules/Test/.cvsignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/.cvsignore rename to .config/zsh/config/plugins/fzf-tab/modules/Test/.cvsignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/.distfiles b/.config/zsh/config/plugins/fzf-tab/modules/Test/.distfiles similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/.distfiles rename to .config/zsh/config/plugins/fzf-tab/modules/Test/.distfiles diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/A01grammar.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/A01grammar.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/A01grammar.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/A01grammar.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/A02alias.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/A02alias.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/A02alias.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/A02alias.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/A03quoting.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/A03quoting.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/A03quoting.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/A03quoting.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/A04redirect.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/A04redirect.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/A04redirect.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/A04redirect.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/A05execution.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/A05execution.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/A05execution.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/A05execution.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/A06assign.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/A06assign.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/A06assign.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/A06assign.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/A07control.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/A07control.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/A07control.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/A07control.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B01cd.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B01cd.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B01cd.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B01cd.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B02typeset.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B02typeset.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B02typeset.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B02typeset.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B03print.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B03print.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B03print.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B03print.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B04read.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B04read.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B04read.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B04read.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B05eval.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B05eval.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B05eval.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B05eval.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B06fc.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B06fc.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B06fc.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B06fc.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B07emulate.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B07emulate.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B07emulate.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B07emulate.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B08shift.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B08shift.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B08shift.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B08shift.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/B09hash.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/B09hash.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/B09hash.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/B09hash.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/C01arith.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/C01arith.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/C01arith.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/C01arith.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/C02cond.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/C02cond.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/C02cond.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/C02cond.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/C03traps.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/C03traps.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/C03traps.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/C03traps.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/C04funcdef.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/C04funcdef.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/C04funcdef.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/C04funcdef.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/C05debug.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/C05debug.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/C05debug.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/C05debug.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D01prompt.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D01prompt.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D01prompt.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D01prompt.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D02glob.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D02glob.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D02glob.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D02glob.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D03procsubst.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D03procsubst.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D03procsubst.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D03procsubst.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D04parameter.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D04parameter.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D04parameter.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D04parameter.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D05array.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D05array.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D05array.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D05array.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D06subscript.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D06subscript.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D06subscript.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D06subscript.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D07multibyte.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D07multibyte.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D07multibyte.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D07multibyte.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D08cmdsubst.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D08cmdsubst.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D08cmdsubst.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D08cmdsubst.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/D09brace.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/D09brace.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/D09brace.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/D09brace.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/E01options.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/E01options.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/E01options.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/E01options.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/E02xtrace.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/E02xtrace.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/E02xtrace.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/E02xtrace.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/Makefile.in b/.config/zsh/config/plugins/fzf-tab/modules/Test/Makefile.in similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/Makefile.in rename to .config/zsh/config/plugins/fzf-tab/modules/Test/Makefile.in diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/README b/.config/zsh/config/plugins/fzf-tab/modules/Test/README similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/README rename to .config/zsh/config/plugins/fzf-tab/modules/Test/README diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/V02zregexparse.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/V02zregexparse.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/V02zregexparse.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/V02zregexparse.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/V03mathfunc.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/V03mathfunc.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/V03mathfunc.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/V03mathfunc.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/V04features.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/V04features.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/V04features.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/V04features.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/V05styles.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/V05styles.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/V05styles.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/V05styles.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/V07pcre.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/V07pcre.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/V07pcre.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/V07pcre.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/V08zpty.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/V08zpty.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/V08zpty.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/V08zpty.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/V09datetime.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/V09datetime.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/V09datetime.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/V09datetime.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/V10private.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/V10private.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/V10private.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/V10private.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/W01history.ztst b/.config/zsh/config/plugins/fzf-tab/modules/Test/W01history.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/W01history.ztst rename to .config/zsh/config/plugins/fzf-tab/modules/Test/W01history.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/comptest b/.config/zsh/config/plugins/fzf-tab/modules/Test/comptest similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/comptest rename to .config/zsh/config/plugins/fzf-tab/modules/Test/comptest diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/runtests.zsh b/.config/zsh/config/plugins/fzf-tab/modules/Test/runtests.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/runtests.zsh rename to .config/zsh/config/plugins/fzf-tab/modules/Test/runtests.zsh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/Test/ztst.zsh b/.config/zsh/config/plugins/fzf-tab/modules/Test/ztst.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/Test/ztst.zsh rename to .config/zsh/config/plugins/fzf-tab/modules/Test/ztst.zsh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/aclocal.m4 b/.config/zsh/config/plugins/fzf-tab/modules/aclocal.m4 similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/aclocal.m4 rename to .config/zsh/config/plugins/fzf-tab/modules/aclocal.m4 diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/aczsh.m4 b/.config/zsh/config/plugins/fzf-tab/modules/aczsh.m4 similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/aczsh.m4 rename to .config/zsh/config/plugins/fzf-tab/modules/aczsh.m4 diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/config.guess b/.config/zsh/config/plugins/fzf-tab/modules/config.guess similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/config.guess rename to .config/zsh/config/plugins/fzf-tab/modules/config.guess diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/config.h.in b/.config/zsh/config/plugins/fzf-tab/modules/config.h.in similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/config.h.in rename to .config/zsh/config/plugins/fzf-tab/modules/config.h.in diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/config.sub b/.config/zsh/config/plugins/fzf-tab/modules/config.sub similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/config.sub rename to .config/zsh/config/plugins/fzf-tab/modules/config.sub diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/configure b/.config/zsh/config/plugins/fzf-tab/modules/configure similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/configure rename to .config/zsh/config/plugins/fzf-tab/modules/configure diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/configure.ac b/.config/zsh/config/plugins/fzf-tab/modules/configure.ac similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/configure.ac rename to .config/zsh/config/plugins/fzf-tab/modules/configure.ac diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/copy_from_zsh_src.zsh b/.config/zsh/config/plugins/fzf-tab/modules/copy_from_zsh_src.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/copy_from_zsh_src.zsh rename to .config/zsh/config/plugins/fzf-tab/modules/copy_from_zsh_src.zsh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/install-sh b/.config/zsh/config/plugins/fzf-tab/modules/install-sh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/install-sh rename to .config/zsh/config/plugins/fzf-tab/modules/install-sh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/mkinstalldirs b/.config/zsh/config/plugins/fzf-tab/modules/mkinstalldirs similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/mkinstalldirs rename to .config/zsh/config/plugins/fzf-tab/modules/mkinstalldirs diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/patch_cfgac.diff b/.config/zsh/config/plugins/fzf-tab/modules/patch_cfgac.diff similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/patch_cfgac.diff rename to .config/zsh/config/plugins/fzf-tab/modules/patch_cfgac.diff diff --git a/.config/zsh/config/omz/plugins/fzf-tab/modules/stamp-h.in b/.config/zsh/config/plugins/fzf-tab/modules/stamp-h.in similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/modules/stamp-h.in rename to .config/zsh/config/plugins/fzf-tab/modules/stamp-h.in diff --git a/.config/zsh/config/omz/plugins/fzf-tab/test/.gitignore b/.config/zsh/config/plugins/fzf-tab/test/.gitignore similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/test/.gitignore rename to .config/zsh/config/plugins/fzf-tab/test/.gitignore diff --git a/.config/zsh/config/omz/plugins/fzf-tab/test/comptest b/.config/zsh/config/plugins/fzf-tab/test/comptest similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/test/comptest rename to .config/zsh/config/plugins/fzf-tab/test/comptest diff --git a/.config/zsh/config/omz/plugins/fzf-tab/test/fzftab.ztst b/.config/zsh/config/plugins/fzf-tab/test/fzftab.ztst similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/test/fzftab.ztst rename to .config/zsh/config/plugins/fzf-tab/test/fzftab.ztst diff --git a/.config/zsh/config/omz/plugins/fzf-tab/test/runtests.zsh b/.config/zsh/config/plugins/fzf-tab/test/runtests.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/test/runtests.zsh rename to .config/zsh/config/plugins/fzf-tab/test/runtests.zsh diff --git a/.config/zsh/config/omz/plugins/fzf-tab/test/select b/.config/zsh/config/plugins/fzf-tab/test/select similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/test/select rename to .config/zsh/config/plugins/fzf-tab/test/select diff --git a/.config/zsh/config/omz/plugins/fzf-tab/test/ztst.zsh b/.config/zsh/config/plugins/fzf-tab/test/ztst.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/fzf-tab/test/ztst.zsh rename to .config/zsh/config/plugins/fzf-tab/test/ztst.zsh diff --git a/.config/zsh/config/plugins/init.zsh b/.config/zsh/config/plugins/init.zsh new file mode 100644 index 0000000..5c8154a --- /dev/null +++ b/.config/zsh/config/plugins/init.zsh @@ -0,0 +1,16 @@ +configure() { + +} + +init() { + local wkdir="${BASE_ZSH_CONFIG_DIR}/config/plugins" + source "${wkdir}/fzf-tab/fzf-tab.zsh" + source "${wkdir}/zsh-autosuggestions/zsh-autosuggestions.zsh" + source "${wkdir}/zsh-completions/zsh-completions.plugin.zsh" + source "${wkdir}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" + source "${wkdir}/zsh-vi-mode/zsh-vi-mode.zsh" + + configure +} + +init diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/.circleci/config.yml b/.config/zsh/config/plugins/zsh-autosuggestions/.circleci/config.yml similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/.circleci/config.yml rename to .config/zsh/config/plugins/zsh-autosuggestions/.circleci/config.yml diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/.editorconfig b/.config/zsh/config/plugins/zsh-autosuggestions/.editorconfig similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/.editorconfig rename to .config/zsh/config/plugins/zsh-autosuggestions/.editorconfig diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/.github/ISSUE_TEMPLATE/bug-report.md b/.config/zsh/config/plugins/zsh-autosuggestions/.github/ISSUE_TEMPLATE/bug-report.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/.github/ISSUE_TEMPLATE/bug-report.md rename to .config/zsh/config/plugins/zsh-autosuggestions/.github/ISSUE_TEMPLATE/bug-report.md diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/.github/ISSUE_TEMPLATE/feature_request.md b/.config/zsh/config/plugins/zsh-autosuggestions/.github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/.github/ISSUE_TEMPLATE/feature_request.md rename to .config/zsh/config/plugins/zsh-autosuggestions/.github/ISSUE_TEMPLATE/feature_request.md diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/.rspec b/.config/zsh/config/plugins/zsh-autosuggestions/.rspec similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/.rspec rename to .config/zsh/config/plugins/zsh-autosuggestions/.rspec diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/.rubocop.yml b/.config/zsh/config/plugins/zsh-autosuggestions/.rubocop.yml similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/.rubocop.yml rename to .config/zsh/config/plugins/zsh-autosuggestions/.rubocop.yml diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/.ruby-version b/.config/zsh/config/plugins/zsh-autosuggestions/.ruby-version similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/.ruby-version rename to .config/zsh/config/plugins/zsh-autosuggestions/.ruby-version diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/CHANGELOG.md b/.config/zsh/config/plugins/zsh-autosuggestions/CHANGELOG.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/CHANGELOG.md rename to .config/zsh/config/plugins/zsh-autosuggestions/CHANGELOG.md diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/DESCRIPTION b/.config/zsh/config/plugins/zsh-autosuggestions/DESCRIPTION similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/DESCRIPTION rename to .config/zsh/config/plugins/zsh-autosuggestions/DESCRIPTION diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/Dockerfile b/.config/zsh/config/plugins/zsh-autosuggestions/Dockerfile similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/Dockerfile rename to .config/zsh/config/plugins/zsh-autosuggestions/Dockerfile diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/Gemfile b/.config/zsh/config/plugins/zsh-autosuggestions/Gemfile similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/Gemfile rename to .config/zsh/config/plugins/zsh-autosuggestions/Gemfile diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/Gemfile.lock b/.config/zsh/config/plugins/zsh-autosuggestions/Gemfile.lock similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/Gemfile.lock rename to .config/zsh/config/plugins/zsh-autosuggestions/Gemfile.lock diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/INSTALL.md b/.config/zsh/config/plugins/zsh-autosuggestions/INSTALL.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/INSTALL.md rename to .config/zsh/config/plugins/zsh-autosuggestions/INSTALL.md diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/LICENSE b/.config/zsh/config/plugins/zsh-autosuggestions/LICENSE similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/LICENSE rename to .config/zsh/config/plugins/zsh-autosuggestions/LICENSE diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/Makefile b/.config/zsh/config/plugins/zsh-autosuggestions/Makefile similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/Makefile rename to .config/zsh/config/plugins/zsh-autosuggestions/Makefile diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/README.md b/.config/zsh/config/plugins/zsh-autosuggestions/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/README.md rename to .config/zsh/config/plugins/zsh-autosuggestions/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/URL b/.config/zsh/config/plugins/zsh-autosuggestions/URL similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/URL rename to .config/zsh/config/plugins/zsh-autosuggestions/URL diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/VERSION b/.config/zsh/config/plugins/zsh-autosuggestions/VERSION similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/VERSION rename to .config/zsh/config/plugins/zsh-autosuggestions/VERSION diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/ZSH_VERSIONS b/.config/zsh/config/plugins/zsh-autosuggestions/ZSH_VERSIONS similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/ZSH_VERSIONS rename to .config/zsh/config/plugins/zsh-autosuggestions/ZSH_VERSIONS diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/install_test_zsh.sh b/.config/zsh/config/plugins/zsh-autosuggestions/install_test_zsh.sh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/install_test_zsh.sh rename to .config/zsh/config/plugins/zsh-autosuggestions/install_test_zsh.sh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/async_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/async_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/async_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/async_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/kill_ring_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/kill_ring_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/kill_ring_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/kill_ring_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/line_init_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/line_init_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/line_init_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/line_init_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/multi_line_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/multi_line_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/multi_line_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/multi_line_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/highlight_style_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/options/highlight_style_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/highlight_style_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/options/highlight_style_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/strategy_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/options/strategy_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/strategy_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/options/strategy_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/widget_lists_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/options/widget_lists_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/options/widget_lists_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/options/widget_lists_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/spec_helper.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/spec_helper.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/spec_helper.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/spec_helper.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/strategies/completion_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/strategies/completion_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/strategies/completion_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/strategies/completion_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/strategies/history_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/strategies/history_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/strategies/history_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/strategies/history_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/strategies/special_characters_helper.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/strategies/special_characters_helper.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/strategies/special_characters_helper.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/strategies/special_characters_helper.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/terminal_session.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/terminal_session.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/terminal_session.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/terminal_session.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/widgets/disable_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/widgets/disable_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/widgets/disable_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/widgets/disable_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/widgets/enable_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/widgets/enable_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/widgets/enable_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/widgets/enable_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/widgets/fetch_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/widgets/fetch_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/widgets/fetch_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/widgets/fetch_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/spec/widgets/toggle_spec.rb b/.config/zsh/config/plugins/zsh-autosuggestions/spec/widgets/toggle_spec.rb similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/spec/widgets/toggle_spec.rb rename to .config/zsh/config/plugins/zsh-autosuggestions/spec/widgets/toggle_spec.rb diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/async.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/async.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/async.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/async.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/bind.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/bind.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/bind.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/bind.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/config.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/config.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/config.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/config.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/fetch.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/fetch.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/fetch.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/fetch.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/highlight.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/highlight.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/highlight.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/highlight.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/start.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/start.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/start.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/start.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/strategies/completion.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/strategies/completion.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/strategies/completion.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/strategies/completion.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/strategies/history.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/strategies/history.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/strategies/history.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/strategies/history.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/util.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/util.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/util.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/util.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/src/widgets.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/src/widgets.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/src/widgets.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/src/widgets.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh b/.config/zsh/config/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh rename to .config/zsh/config/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-completions/.editorconfig b/.config/zsh/config/plugins/zsh-completions/.editorconfig similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/.editorconfig rename to .config/zsh/config/plugins/zsh-completions/.editorconfig diff --git a/.config/zsh/config/omz/plugins/zsh-completions/.github/ISSUE_TEMPLATE.md b/.config/zsh/config/plugins/zsh-completions/.github/ISSUE_TEMPLATE.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/.github/ISSUE_TEMPLATE.md rename to .config/zsh/config/plugins/zsh-completions/.github/ISSUE_TEMPLATE.md diff --git a/.config/zsh/config/omz/plugins/zsh-completions/.github/PULL_REQUEST_TEMPLATE.md b/.config/zsh/config/plugins/zsh-completions/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/.github/PULL_REQUEST_TEMPLATE.md rename to .config/zsh/config/plugins/zsh-completions/.github/PULL_REQUEST_TEMPLATE.md diff --git a/.config/zsh/config/omz/plugins/zsh-completions/.gitignore b/.config/zsh/config/plugins/zsh-completions/.gitignore similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/.gitignore rename to .config/zsh/config/plugins/zsh-completions/.gitignore diff --git a/.config/zsh/config/omz/plugins/zsh-completions/CONTRIBUTING.md b/.config/zsh/config/plugins/zsh-completions/CONTRIBUTING.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/CONTRIBUTING.md rename to .config/zsh/config/plugins/zsh-completions/CONTRIBUTING.md diff --git a/.config/zsh/config/omz/plugins/zsh-completions/LICENSE b/.config/zsh/config/plugins/zsh-completions/LICENSE similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/LICENSE rename to .config/zsh/config/plugins/zsh-completions/LICENSE diff --git a/.config/zsh/config/omz/plugins/zsh-completions/README.md b/.config/zsh/config/plugins/zsh-completions/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/README.md rename to .config/zsh/config/plugins/zsh-completions/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_afew b/.config/zsh/config/plugins/zsh-completions/src/_afew similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_afew rename to .config/zsh/config/plugins/zsh-completions/src/_afew diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_android b/.config/zsh/config/plugins/zsh-completions/src/_android similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_android rename to .config/zsh/config/plugins/zsh-completions/src/_android diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_archlinux-java b/.config/zsh/config/plugins/zsh-completions/src/_archlinux-java similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_archlinux-java rename to .config/zsh/config/plugins/zsh-completions/src/_archlinux-java diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_artisan b/.config/zsh/config/plugins/zsh-completions/src/_artisan similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_artisan rename to .config/zsh/config/plugins/zsh-completions/src/_artisan diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_atach b/.config/zsh/config/plugins/zsh-completions/src/_atach similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_atach rename to .config/zsh/config/plugins/zsh-completions/src/_atach diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_bitcoin-cli b/.config/zsh/config/plugins/zsh-completions/src/_bitcoin-cli similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_bitcoin-cli rename to .config/zsh/config/plugins/zsh-completions/src/_bitcoin-cli diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_bower b/.config/zsh/config/plugins/zsh-completions/src/_bower similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_bower rename to .config/zsh/config/plugins/zsh-completions/src/_bower diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_bundle b/.config/zsh/config/plugins/zsh-completions/src/_bundle similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_bundle rename to .config/zsh/config/plugins/zsh-completions/src/_bundle diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_caffeinate b/.config/zsh/config/plugins/zsh-completions/src/_caffeinate similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_caffeinate rename to .config/zsh/config/plugins/zsh-completions/src/_caffeinate diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_cap b/.config/zsh/config/plugins/zsh-completions/src/_cap similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_cap rename to .config/zsh/config/plugins/zsh-completions/src/_cap diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_cask b/.config/zsh/config/plugins/zsh-completions/src/_cask similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_cask rename to .config/zsh/config/plugins/zsh-completions/src/_cask diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_ccache b/.config/zsh/config/plugins/zsh-completions/src/_ccache similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_ccache rename to .config/zsh/config/plugins/zsh-completions/src/_ccache diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_cf b/.config/zsh/config/plugins/zsh-completions/src/_cf similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_cf rename to .config/zsh/config/plugins/zsh-completions/src/_cf diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_choc b/.config/zsh/config/plugins/zsh-completions/src/_choc similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_choc rename to .config/zsh/config/plugins/zsh-completions/src/_choc diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_chromium b/.config/zsh/config/plugins/zsh-completions/src/_chromium similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_chromium rename to .config/zsh/config/plugins/zsh-completions/src/_chromium diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_cmake b/.config/zsh/config/plugins/zsh-completions/src/_cmake similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_cmake rename to .config/zsh/config/plugins/zsh-completions/src/_cmake diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_coffee b/.config/zsh/config/plugins/zsh-completions/src/_coffee similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_coffee rename to .config/zsh/config/plugins/zsh-completions/src/_coffee diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_composer b/.config/zsh/config/plugins/zsh-completions/src/_composer similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_composer rename to .config/zsh/config/plugins/zsh-completions/src/_composer diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_conan b/.config/zsh/config/plugins/zsh-completions/src/_conan similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_conan rename to .config/zsh/config/plugins/zsh-completions/src/_conan diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_concourse b/.config/zsh/config/plugins/zsh-completions/src/_concourse similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_concourse rename to .config/zsh/config/plugins/zsh-completions/src/_concourse diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_console b/.config/zsh/config/plugins/zsh-completions/src/_console similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_console rename to .config/zsh/config/plugins/zsh-completions/src/_console diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_cppcheck b/.config/zsh/config/plugins/zsh-completions/src/_cppcheck similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_cppcheck rename to .config/zsh/config/plugins/zsh-completions/src/_cppcheck diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_dad b/.config/zsh/config/plugins/zsh-completions/src/_dad similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_dad rename to .config/zsh/config/plugins/zsh-completions/src/_dad diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_debuild b/.config/zsh/config/plugins/zsh-completions/src/_debuild similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_debuild rename to .config/zsh/config/plugins/zsh-completions/src/_debuild diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_dget b/.config/zsh/config/plugins/zsh-completions/src/_dget similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_dget rename to .config/zsh/config/plugins/zsh-completions/src/_dget diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_dhcpcd b/.config/zsh/config/plugins/zsh-completions/src/_dhcpcd similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_dhcpcd rename to .config/zsh/config/plugins/zsh-completions/src/_dhcpcd diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_diana b/.config/zsh/config/plugins/zsh-completions/src/_diana similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_diana rename to .config/zsh/config/plugins/zsh-completions/src/_diana diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_docpad b/.config/zsh/config/plugins/zsh-completions/src/_docpad similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_docpad rename to .config/zsh/config/plugins/zsh-completions/src/_docpad diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_drush b/.config/zsh/config/plugins/zsh-completions/src/_drush similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_drush rename to .config/zsh/config/plugins/zsh-completions/src/_drush diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_ecdsautil b/.config/zsh/config/plugins/zsh-completions/src/_ecdsautil similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_ecdsautil rename to .config/zsh/config/plugins/zsh-completions/src/_ecdsautil diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_emulator b/.config/zsh/config/plugins/zsh-completions/src/_emulator similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_emulator rename to .config/zsh/config/plugins/zsh-completions/src/_emulator diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_envdir b/.config/zsh/config/plugins/zsh-completions/src/_envdir similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_envdir rename to .config/zsh/config/plugins/zsh-completions/src/_envdir diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_exportfs b/.config/zsh/config/plugins/zsh-completions/src/_exportfs similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_exportfs rename to .config/zsh/config/plugins/zsh-completions/src/_exportfs diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_fab b/.config/zsh/config/plugins/zsh-completions/src/_fab similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_fab rename to .config/zsh/config/plugins/zsh-completions/src/_fab diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_fail2ban-client b/.config/zsh/config/plugins/zsh-completions/src/_fail2ban-client similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_fail2ban-client rename to .config/zsh/config/plugins/zsh-completions/src/_fail2ban-client diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_ffind b/.config/zsh/config/plugins/zsh-completions/src/_ffind similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_ffind rename to .config/zsh/config/plugins/zsh-completions/src/_ffind diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_fleetctl b/.config/zsh/config/plugins/zsh-completions/src/_fleetctl similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_fleetctl rename to .config/zsh/config/plugins/zsh-completions/src/_fleetctl diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_flutter b/.config/zsh/config/plugins/zsh-completions/src/_flutter similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_flutter rename to .config/zsh/config/plugins/zsh-completions/src/_flutter diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_force b/.config/zsh/config/plugins/zsh-completions/src/_force similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_force rename to .config/zsh/config/plugins/zsh-completions/src/_force diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_fwupdmgr b/.config/zsh/config/plugins/zsh-completions/src/_fwupdmgr similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_fwupdmgr rename to .config/zsh/config/plugins/zsh-completions/src/_fwupdmgr diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_gas b/.config/zsh/config/plugins/zsh-completions/src/_gas similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_gas rename to .config/zsh/config/plugins/zsh-completions/src/_gas diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_ghc b/.config/zsh/config/plugins/zsh-completions/src/_ghc similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_ghc rename to .config/zsh/config/plugins/zsh-completions/src/_ghc diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_gist b/.config/zsh/config/plugins/zsh-completions/src/_gist similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_gist rename to .config/zsh/config/plugins/zsh-completions/src/_gist diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_git-flow b/.config/zsh/config/plugins/zsh-completions/src/_git-flow similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_git-flow rename to .config/zsh/config/plugins/zsh-completions/src/_git-flow diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_git-journal b/.config/zsh/config/plugins/zsh-completions/src/_git-journal similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_git-journal rename to .config/zsh/config/plugins/zsh-completions/src/_git-journal diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_git-pulls b/.config/zsh/config/plugins/zsh-completions/src/_git-pulls similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_git-pulls rename to .config/zsh/config/plugins/zsh-completions/src/_git-pulls diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_git-revise b/.config/zsh/config/plugins/zsh-completions/src/_git-revise similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_git-revise rename to .config/zsh/config/plugins/zsh-completions/src/_git-revise diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_git-wtf b/.config/zsh/config/plugins/zsh-completions/src/_git-wtf similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_git-wtf rename to .config/zsh/config/plugins/zsh-completions/src/_git-wtf diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_glances b/.config/zsh/config/plugins/zsh-completions/src/_glances similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_glances rename to .config/zsh/config/plugins/zsh-completions/src/_glances diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_golang b/.config/zsh/config/plugins/zsh-completions/src/_golang similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_golang rename to .config/zsh/config/plugins/zsh-completions/src/_golang diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_google b/.config/zsh/config/plugins/zsh-completions/src/_google similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_google rename to .config/zsh/config/plugins/zsh-completions/src/_google diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_gpgconf b/.config/zsh/config/plugins/zsh-completions/src/_gpgconf similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_gpgconf rename to .config/zsh/config/plugins/zsh-completions/src/_gpgconf diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_gtk-launch b/.config/zsh/config/plugins/zsh-completions/src/_gtk-launch similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_gtk-launch rename to .config/zsh/config/plugins/zsh-completions/src/_gtk-launch diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_hello b/.config/zsh/config/plugins/zsh-completions/src/_hello similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_hello rename to .config/zsh/config/plugins/zsh-completions/src/_hello diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_hledger b/.config/zsh/config/plugins/zsh-completions/src/_hledger similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_hledger rename to .config/zsh/config/plugins/zsh-completions/src/_hledger diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_homestead b/.config/zsh/config/plugins/zsh-completions/src/_homestead similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_homestead rename to .config/zsh/config/plugins/zsh-completions/src/_homestead diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_httpie b/.config/zsh/config/plugins/zsh-completions/src/_httpie similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_httpie rename to .config/zsh/config/plugins/zsh-completions/src/_httpie diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_ibus b/.config/zsh/config/plugins/zsh-completions/src/_ibus similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_ibus rename to .config/zsh/config/plugins/zsh-completions/src/_ibus diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_include-what-you-use b/.config/zsh/config/plugins/zsh-completions/src/_include-what-you-use similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_include-what-you-use rename to .config/zsh/config/plugins/zsh-completions/src/_include-what-you-use diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_inxi b/.config/zsh/config/plugins/zsh-completions/src/_inxi similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_inxi rename to .config/zsh/config/plugins/zsh-completions/src/_inxi diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_jmeter b/.config/zsh/config/plugins/zsh-completions/src/_jmeter similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_jmeter rename to .config/zsh/config/plugins/zsh-completions/src/_jmeter diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_jmeter-plugins b/.config/zsh/config/plugins/zsh-completions/src/_jmeter-plugins similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_jmeter-plugins rename to .config/zsh/config/plugins/zsh-completions/src/_jmeter-plugins diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_jonas b/.config/zsh/config/plugins/zsh-completions/src/_jonas similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_jonas rename to .config/zsh/config/plugins/zsh-completions/src/_jonas diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_jrnl b/.config/zsh/config/plugins/zsh-completions/src/_jrnl similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_jrnl rename to .config/zsh/config/plugins/zsh-completions/src/_jrnl diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_kak b/.config/zsh/config/plugins/zsh-completions/src/_kak similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_kak rename to .config/zsh/config/plugins/zsh-completions/src/_kak diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_kitchen b/.config/zsh/config/plugins/zsh-completions/src/_kitchen similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_kitchen rename to .config/zsh/config/plugins/zsh-completions/src/_kitchen diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_knife b/.config/zsh/config/plugins/zsh-completions/src/_knife similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_knife rename to .config/zsh/config/plugins/zsh-completions/src/_knife diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_language_codes b/.config/zsh/config/plugins/zsh-completions/src/_language_codes similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_language_codes rename to .config/zsh/config/plugins/zsh-completions/src/_language_codes diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_lilypond b/.config/zsh/config/plugins/zsh-completions/src/_lilypond similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_lilypond rename to .config/zsh/config/plugins/zsh-completions/src/_lilypond diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_lunchy b/.config/zsh/config/plugins/zsh-completions/src/_lunchy similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_lunchy rename to .config/zsh/config/plugins/zsh-completions/src/_lunchy diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_mc b/.config/zsh/config/plugins/zsh-completions/src/_mc similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_mc rename to .config/zsh/config/plugins/zsh-completions/src/_mc diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_middleman b/.config/zsh/config/plugins/zsh-completions/src/_middleman similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_middleman rename to .config/zsh/config/plugins/zsh-completions/src/_middleman diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_mina b/.config/zsh/config/plugins/zsh-completions/src/_mina similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_mina rename to .config/zsh/config/plugins/zsh-completions/src/_mina diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_mix b/.config/zsh/config/plugins/zsh-completions/src/_mix similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_mix rename to .config/zsh/config/plugins/zsh-completions/src/_mix diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_mssh b/.config/zsh/config/plugins/zsh-completions/src/_mssh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_mssh rename to .config/zsh/config/plugins/zsh-completions/src/_mssh diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_mussh b/.config/zsh/config/plugins/zsh-completions/src/_mussh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_mussh rename to .config/zsh/config/plugins/zsh-completions/src/_mussh diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_mvn b/.config/zsh/config/plugins/zsh-completions/src/_mvn similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_mvn rename to .config/zsh/config/plugins/zsh-completions/src/_mvn diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_nano b/.config/zsh/config/plugins/zsh-completions/src/_nano similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_nano rename to .config/zsh/config/plugins/zsh-completions/src/_nano diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_nanoc b/.config/zsh/config/plugins/zsh-completions/src/_nanoc similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_nanoc rename to .config/zsh/config/plugins/zsh-completions/src/_nanoc diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_nftables b/.config/zsh/config/plugins/zsh-completions/src/_nftables similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_nftables rename to .config/zsh/config/plugins/zsh-completions/src/_nftables diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_node b/.config/zsh/config/plugins/zsh-completions/src/_node similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_node rename to .config/zsh/config/plugins/zsh-completions/src/_node diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_nvm b/.config/zsh/config/plugins/zsh-completions/src/_nvm similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_nvm rename to .config/zsh/config/plugins/zsh-completions/src/_nvm diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_openssl b/.config/zsh/config/plugins/zsh-completions/src/_openssl similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_openssl rename to .config/zsh/config/plugins/zsh-completions/src/_openssl diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_openvpn3 b/.config/zsh/config/plugins/zsh-completions/src/_openvpn3 similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_openvpn3 rename to .config/zsh/config/plugins/zsh-completions/src/_openvpn3 diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_optirun b/.config/zsh/config/plugins/zsh-completions/src/_optirun similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_optirun rename to .config/zsh/config/plugins/zsh-completions/src/_optirun diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_opustools b/.config/zsh/config/plugins/zsh-completions/src/_opustools similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_opustools rename to .config/zsh/config/plugins/zsh-completions/src/_opustools diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_patool b/.config/zsh/config/plugins/zsh-completions/src/_patool similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_patool rename to .config/zsh/config/plugins/zsh-completions/src/_patool diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_perf b/.config/zsh/config/plugins/zsh-completions/src/_perf similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_perf rename to .config/zsh/config/plugins/zsh-completions/src/_perf diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_periscope b/.config/zsh/config/plugins/zsh-completions/src/_periscope similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_periscope rename to .config/zsh/config/plugins/zsh-completions/src/_periscope diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_pgsql_utils b/.config/zsh/config/plugins/zsh-completions/src/_pgsql_utils similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_pgsql_utils rename to .config/zsh/config/plugins/zsh-completions/src/_pgsql_utils diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_phing b/.config/zsh/config/plugins/zsh-completions/src/_phing similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_phing rename to .config/zsh/config/plugins/zsh-completions/src/_phing diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_pixz b/.config/zsh/config/plugins/zsh-completions/src/_pixz similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_pixz rename to .config/zsh/config/plugins/zsh-completions/src/_pixz diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_pkcon b/.config/zsh/config/plugins/zsh-completions/src/_pkcon similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_pkcon rename to .config/zsh/config/plugins/zsh-completions/src/_pkcon diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_play b/.config/zsh/config/plugins/zsh-completions/src/_play similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_play rename to .config/zsh/config/plugins/zsh-completions/src/_play diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_pm2 b/.config/zsh/config/plugins/zsh-completions/src/_pm2 similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_pm2 rename to .config/zsh/config/plugins/zsh-completions/src/_pm2 diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_port b/.config/zsh/config/plugins/zsh-completions/src/_port similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_port rename to .config/zsh/config/plugins/zsh-completions/src/_port diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_protoc b/.config/zsh/config/plugins/zsh-completions/src/_protoc similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_protoc rename to .config/zsh/config/plugins/zsh-completions/src/_protoc diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_pygmentize b/.config/zsh/config/plugins/zsh-completions/src/_pygmentize similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_pygmentize rename to .config/zsh/config/plugins/zsh-completions/src/_pygmentize diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_qmk b/.config/zsh/config/plugins/zsh-completions/src/_qmk similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_qmk rename to .config/zsh/config/plugins/zsh-completions/src/_qmk diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_rails b/.config/zsh/config/plugins/zsh-completions/src/_rails similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_rails rename to .config/zsh/config/plugins/zsh-completions/src/_rails diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_ralio b/.config/zsh/config/plugins/zsh-completions/src/_ralio similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_ralio rename to .config/zsh/config/plugins/zsh-completions/src/_ralio diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_redis-cli b/.config/zsh/config/plugins/zsh-completions/src/_redis-cli similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_redis-cli rename to .config/zsh/config/plugins/zsh-completions/src/_redis-cli diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_rfkill b/.config/zsh/config/plugins/zsh-completions/src/_rfkill similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_rfkill rename to .config/zsh/config/plugins/zsh-completions/src/_rfkill diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_rkt b/.config/zsh/config/plugins/zsh-completions/src/_rkt similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_rkt rename to .config/zsh/config/plugins/zsh-completions/src/_rkt diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_rmlint b/.config/zsh/config/plugins/zsh-completions/src/_rmlint similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_rmlint rename to .config/zsh/config/plugins/zsh-completions/src/_rmlint diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_rslsync b/.config/zsh/config/plugins/zsh-completions/src/_rslsync similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_rslsync rename to .config/zsh/config/plugins/zsh-completions/src/_rslsync diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_rspec b/.config/zsh/config/plugins/zsh-completions/src/_rspec similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_rspec rename to .config/zsh/config/plugins/zsh-completions/src/_rspec diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_rsvm b/.config/zsh/config/plugins/zsh-completions/src/_rsvm similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_rsvm rename to .config/zsh/config/plugins/zsh-completions/src/_rsvm diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_rubocop b/.config/zsh/config/plugins/zsh-completions/src/_rubocop similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_rubocop rename to .config/zsh/config/plugins/zsh-completions/src/_rubocop diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_sbt b/.config/zsh/config/plugins/zsh-completions/src/_sbt similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_sbt rename to .config/zsh/config/plugins/zsh-completions/src/_sbt diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_scala b/.config/zsh/config/plugins/zsh-completions/src/_scala similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_scala rename to .config/zsh/config/plugins/zsh-completions/src/_scala diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_scrub b/.config/zsh/config/plugins/zsh-completions/src/_scrub similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_scrub rename to .config/zsh/config/plugins/zsh-completions/src/_scrub diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_sdd b/.config/zsh/config/plugins/zsh-completions/src/_sdd similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_sdd rename to .config/zsh/config/plugins/zsh-completions/src/_sdd diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_setcap b/.config/zsh/config/plugins/zsh-completions/src/_setcap similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_setcap rename to .config/zsh/config/plugins/zsh-completions/src/_setcap diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_setup.py b/.config/zsh/config/plugins/zsh-completions/src/_setup.py similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_setup.py rename to .config/zsh/config/plugins/zsh-completions/src/_setup.py diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_sfdx b/.config/zsh/config/plugins/zsh-completions/src/_sfdx similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_sfdx rename to .config/zsh/config/plugins/zsh-completions/src/_sfdx diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_shellcheck b/.config/zsh/config/plugins/zsh-completions/src/_shellcheck similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_shellcheck rename to .config/zsh/config/plugins/zsh-completions/src/_shellcheck diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_showoff b/.config/zsh/config/plugins/zsh-completions/src/_showoff similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_showoff rename to .config/zsh/config/plugins/zsh-completions/src/_showoff diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_srm b/.config/zsh/config/plugins/zsh-completions/src/_srm similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_srm rename to .config/zsh/config/plugins/zsh-completions/src/_srm diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_stack b/.config/zsh/config/plugins/zsh-completions/src/_stack similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_stack rename to .config/zsh/config/plugins/zsh-completions/src/_stack diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_subl b/.config/zsh/config/plugins/zsh-completions/src/_subl similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_subl rename to .config/zsh/config/plugins/zsh-completions/src/_subl diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_subliminal b/.config/zsh/config/plugins/zsh-completions/src/_subliminal similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_subliminal rename to .config/zsh/config/plugins/zsh-completions/src/_subliminal diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_supervisorctl b/.config/zsh/config/plugins/zsh-completions/src/_supervisorctl similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_supervisorctl rename to .config/zsh/config/plugins/zsh-completions/src/_supervisorctl diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_svm b/.config/zsh/config/plugins/zsh-completions/src/_svm similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_svm rename to .config/zsh/config/plugins/zsh-completions/src/_svm diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_tarsnap b/.config/zsh/config/plugins/zsh-completions/src/_tarsnap similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_tarsnap rename to .config/zsh/config/plugins/zsh-completions/src/_tarsnap diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_teamocil b/.config/zsh/config/plugins/zsh-completions/src/_teamocil similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_teamocil rename to .config/zsh/config/plugins/zsh-completions/src/_teamocil diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_thor b/.config/zsh/config/plugins/zsh-completions/src/_thor similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_thor rename to .config/zsh/config/plugins/zsh-completions/src/_thor diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_tmuxinator b/.config/zsh/config/plugins/zsh-completions/src/_tmuxinator similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_tmuxinator rename to .config/zsh/config/plugins/zsh-completions/src/_tmuxinator diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_tmuxp b/.config/zsh/config/plugins/zsh-completions/src/_tmuxp similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_tmuxp rename to .config/zsh/config/plugins/zsh-completions/src/_tmuxp diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_tox b/.config/zsh/config/plugins/zsh-completions/src/_tox similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_tox rename to .config/zsh/config/plugins/zsh-completions/src/_tox diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_trash b/.config/zsh/config/plugins/zsh-completions/src/_trash similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_trash rename to .config/zsh/config/plugins/zsh-completions/src/_trash diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_trash-empty b/.config/zsh/config/plugins/zsh-completions/src/_trash-empty similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_trash-empty rename to .config/zsh/config/plugins/zsh-completions/src/_trash-empty diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_trash-list b/.config/zsh/config/plugins/zsh-completions/src/_trash-list similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_trash-list rename to .config/zsh/config/plugins/zsh-completions/src/_trash-list diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_trash-put b/.config/zsh/config/plugins/zsh-completions/src/_trash-put similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_trash-put rename to .config/zsh/config/plugins/zsh-completions/src/_trash-put diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_trash-restore b/.config/zsh/config/plugins/zsh-completions/src/_trash-restore similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_trash-restore rename to .config/zsh/config/plugins/zsh-completions/src/_trash-restore diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_udisksctl b/.config/zsh/config/plugins/zsh-completions/src/_udisksctl similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_udisksctl rename to .config/zsh/config/plugins/zsh-completions/src/_udisksctl diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_ufw b/.config/zsh/config/plugins/zsh-completions/src/_ufw similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_ufw rename to .config/zsh/config/plugins/zsh-completions/src/_ufw diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_vagrant b/.config/zsh/config/plugins/zsh-completions/src/_vagrant similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_vagrant rename to .config/zsh/config/plugins/zsh-completions/src/_vagrant diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_virtualbox b/.config/zsh/config/plugins/zsh-completions/src/_virtualbox similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_virtualbox rename to .config/zsh/config/plugins/zsh-completions/src/_virtualbox diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_vnstat b/.config/zsh/config/plugins/zsh-completions/src/_vnstat similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_vnstat rename to .config/zsh/config/plugins/zsh-completions/src/_vnstat diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_wemux b/.config/zsh/config/plugins/zsh-completions/src/_wemux similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_wemux rename to .config/zsh/config/plugins/zsh-completions/src/_wemux diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_wg-quick b/.config/zsh/config/plugins/zsh-completions/src/_wg-quick similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_wg-quick rename to .config/zsh/config/plugins/zsh-completions/src/_wg-quick diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_xinput b/.config/zsh/config/plugins/zsh-completions/src/_xinput similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_xinput rename to .config/zsh/config/plugins/zsh-completions/src/_xinput diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_xsel b/.config/zsh/config/plugins/zsh-completions/src/_xsel similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_xsel rename to .config/zsh/config/plugins/zsh-completions/src/_xsel diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_yaourt b/.config/zsh/config/plugins/zsh-completions/src/_yaourt similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_yaourt rename to .config/zsh/config/plugins/zsh-completions/src/_yaourt diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_yarn b/.config/zsh/config/plugins/zsh-completions/src/_yarn similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_yarn rename to .config/zsh/config/plugins/zsh-completions/src/_yarn diff --git a/.config/zsh/config/omz/plugins/zsh-completions/src/_zcash-cli b/.config/zsh/config/plugins/zsh-completions/src/_zcash-cli similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/src/_zcash-cli rename to .config/zsh/config/plugins/zsh-completions/src/_zcash-cli diff --git a/.config/zsh/config/omz/plugins/zsh-completions/zsh-completions-howto.org b/.config/zsh/config/plugins/zsh-completions/zsh-completions-howto.org similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/zsh-completions-howto.org rename to .config/zsh/config/plugins/zsh-completions/zsh-completions-howto.org diff --git a/.config/zsh/config/omz/plugins/zsh-completions/zsh-completions.plugin.zsh b/.config/zsh/config/plugins/zsh-completions/zsh-completions.plugin.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-completions/zsh-completions.plugin.zsh rename to .config/zsh/config/plugins/zsh-completions/zsh-completions.plugin.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/.editorconfig b/.config/zsh/config/plugins/zsh-syntax-highlighting/.editorconfig similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/.editorconfig rename to .config/zsh/config/plugins/zsh-syntax-highlighting/.editorconfig diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/.gitattributes b/.config/zsh/config/plugins/zsh-syntax-highlighting/.gitattributes similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/.gitattributes rename to .config/zsh/config/plugins/zsh-syntax-highlighting/.gitattributes diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/.github/workflows/test.yml b/.config/zsh/config/plugins/zsh-syntax-highlighting/.github/workflows/test.yml similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/.github/workflows/test.yml rename to .config/zsh/config/plugins/zsh-syntax-highlighting/.github/workflows/test.yml diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/.gitignore b/.config/zsh/config/plugins/zsh-syntax-highlighting/.gitignore similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/.gitignore rename to .config/zsh/config/plugins/zsh-syntax-highlighting/.gitignore diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/.revision-hash b/.config/zsh/config/plugins/zsh-syntax-highlighting/.revision-hash similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/.revision-hash rename to .config/zsh/config/plugins/zsh-syntax-highlighting/.revision-hash diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/.version b/.config/zsh/config/plugins/zsh-syntax-highlighting/.version similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/.version rename to .config/zsh/config/plugins/zsh-syntax-highlighting/.version diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/COPYING.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/COPYING.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/COPYING.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/COPYING.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/HACKING.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/HACKING.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/HACKING.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/HACKING.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/INSTALL.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/INSTALL.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/INSTALL.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/INSTALL.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/Makefile b/.config/zsh/config/plugins/zsh-syntax-highlighting/Makefile similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/Makefile rename to .config/zsh/config/plugins/zsh-syntax-highlighting/Makefile diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/changelog.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/changelog.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/changelog.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/changelog.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/brackets.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/brackets.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/brackets.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/brackets.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/cursor.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/cursor.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/cursor.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/cursor.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/line.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/line.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/line.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/line.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/main.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/main.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/main.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/main.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/pattern.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/pattern.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/pattern.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/pattern.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/regexp.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/regexp.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/regexp.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/regexp.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/root.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/root.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/docs/highlighters/root.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/docs/highlighters/root.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/brackets-highlighter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/brackets-highlighter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/brackets-highlighter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/brackets-highlighter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket-line-finish.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket-line-finish.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket-line-finish.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket-line-finish.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/empty-styles.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/empty-styles.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/empty-styles.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/empty-styles.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/loop-styles.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/loop-styles.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/loop-styles.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/loop-styles.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/mismatch-patentheses.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/mismatch-patentheses.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/mismatch-patentheses.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/mismatch-patentheses.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/near-quotes.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/near-quotes.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/near-quotes.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/near-quotes.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/nested-parentheses.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/nested-parentheses.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/nested-parentheses.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/nested-parentheses.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/only-error.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/only-error.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/only-error.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/only-error.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/quoted-patentheses.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/quoted-patentheses.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/quoted-patentheses.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/quoted-patentheses.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/simple-parentheses.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/simple-parentheses.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/simple-parentheses.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/simple-parentheses.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/cursor/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/cursor/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/cursor/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/cursor/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/cursor/cursor-highlighter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/cursor/cursor-highlighter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/cursor/cursor-highlighter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/cursor/cursor-highlighter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/line/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/line/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/line/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/line/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/line/line-highlighter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/line/line-highlighter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/line/line-highlighter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/line/line-highlighter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/main-highlighter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/main-highlighter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/main-highlighter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/main-highlighter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1b.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1b.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1b.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1b.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3b.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3b.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3b.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3b.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position5.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position5.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position5.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position5.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-assignment1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-assignment1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-assignment1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-assignment1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-basic.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-basic.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-basic.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-basic.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-brackets.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-brackets.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-brackets.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-brackets.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-command-substitution.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-command-substitution.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-command-substitution.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-command-substitution.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-complex.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-complex.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-complex.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-complex.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-empty.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-empty.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-empty.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-empty.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-in-cmdsubst.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-in-cmdsubst.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-in-cmdsubst.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-in-cmdsubst.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested-precommand.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested-precommand.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested-precommand.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested-precommand.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-parameter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-parameter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-parameter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-parameter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-quoted.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-quoted.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-quoted.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-quoted.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-redirect.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-redirect.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-redirect.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-redirect.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse5.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse5.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse5.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse5.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-self.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-self.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-self.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-self.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-self2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-self2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-self2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-self2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir1b.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir1b.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir1b.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir1b.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/alias.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/always3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/anonymous-function.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/anonymous-function.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/anonymous-function.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/anonymous-function.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arg0-colon.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arg0-colon.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arg0-colon.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arg0-colon.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith-cmdsubst-mess.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith-cmdsubst-mess.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith-cmdsubst-mess.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith-cmdsubst-mess.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arith2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-command-substitution.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-command-substitution.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-command-substitution.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-command-substitution.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-doubled-parens.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-doubled-parens.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-doubled-parens.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-doubled-parens.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-empty.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-empty.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-empty.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-empty.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-evaluation.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-evaluation.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-evaluation.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-evaluation.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-hist-expn.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-hist-expn.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-hist-expn.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-hist-expn.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-invalid-chars.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-invalid-chars.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-invalid-chars.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-invalid-chars.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-multiplication.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-multiplication.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-multiplication.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-multiplication.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-nested.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-nested.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-nested.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-nested.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-quoted.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-quoted.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-quoted.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-quoted.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unclosed.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unclosed.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unclosed.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unclosed.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unfinished.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unfinished.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unfinished.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unfinished.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-append.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-append.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-append.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-append.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-argv.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-argv.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-argv.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-argv.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-array3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-invalid-command.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-invalid-command.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-invalid-command.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-invalid-command.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-quoted-cmdsubst.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-quoted-cmdsubst.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-quoted-cmdsubst.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-quoted-cmdsubst.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-semicolon.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-semicolon.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-semicolon.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-semicolon.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-subshell.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-subshell.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-subshell.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-subshell.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assign.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword5.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword5.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword5.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword5.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-quoted.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-quoted.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-quoted.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/assignment-quoted.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-argument.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-argument.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-argument.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-argument.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-open.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-open.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-open.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-open.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-space.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-space.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-space.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash-space.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/backslash.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-array.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-array.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-array.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-array.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-scalar.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-scalar.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-scalar.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-scalar.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-pipeline.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-pipeline.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-pipeline.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/bang-pipeline.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/block-assignment-no-command.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/block-assignment-no-command.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/block-assignment-no-command.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/block-assignment-no-command.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/braces1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/braces1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/braces1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/braces1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/braces2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/braces2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/braces2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/braces2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch10-if-negative.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch10-if-negative.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch10-if-negative.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch10-if-negative.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch5.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch5.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch5.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch5.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch6.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch6.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch6.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch6.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch7.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch7.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch7.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch7.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8-if-positive.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8-if-positive.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8-if-positive.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8-if-positive.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch9-if-positive.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch9-if-positive.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch9-if-positive.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch9-if-positive.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-premature-termination.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-premature-termination.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-premature-termination.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/brackets-premature-termination.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cdpath-abspath.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cdpath-abspath.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cdpath-abspath.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cdpath-abspath.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cmdpos-elision-partial.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cmdpos-elision-partial.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cmdpos-elision-partial.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cmdpos-elision-partial.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-adjacent.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-adjacent.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-adjacent.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-adjacent.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-in-assignment.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-in-assignment.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-in-assignment.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-in-assignment.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-unclosed.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-unclosed.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-unclosed.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-unclosed.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/commandseparator.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/commandseparator.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/commandseparator.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/commandseparator.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-followed.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-followed.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-followed.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-followed.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-leading.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-leading.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-leading.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-leading.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-off.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-off.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-off.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comment-off.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comments.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comments.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comments.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/comments.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/commmand-parameter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/commmand-parameter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/commmand-parameter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/commmand-parameter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/control-flow3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cthulhu.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cthulhu.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cthulhu.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/cthulhu.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dinbrack1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dinbrack1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dinbrack1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dinbrack1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dirs_blacklist.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dirs_blacklist.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dirs_blacklist.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dirs_blacklist.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-dollar.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-dollar.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-dollar.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-dollar.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-noise.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-noise.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-noise.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-noise.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-paren.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-paren.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-paren.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-paren.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-hyphen-option.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-hyphen-option.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-hyphen-option.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-hyphen-option.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command-newline.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command-newline.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command-newline.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command-newline.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-command2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-line.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-line.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-line.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/empty-line.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/equals4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/escaped-single-quote.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/escaped-single-quote.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/escaped-single-quote.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/escaped-single-quote.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/exec-redirection1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/exec-redirection1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/exec-redirection1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/exec-redirection1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/fd-target-not-filename.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/fd-target-not-filename.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/fd-target-not-filename.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/fd-target-not-filename.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-altsyntax.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-altsyntax.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-altsyntax.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-altsyntax.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-named1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-named1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-named1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-named1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-named2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-named2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-named2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function-named2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/function.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/glob.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/glob.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/glob.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/glob.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/global-alias1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/global-alias1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/global-alias1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/global-alias1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/globs-with-quoting.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/globs-with-quoting.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/globs-with-quoting.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/globs-with-quoting.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/hashed-command.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/hashed-command.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/hashed-command.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/hashed-command.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-escaped.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-escaped.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-escaped.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-escaped.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-followed.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-followed.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-followed.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-followed.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-no.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-no.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-no.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-no.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-unescaped.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-unescaped.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-unescaped.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-unescaped.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-yes.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-yes.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-yes.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-yes.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/inheritance.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/inheritance.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/inheritance.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/inheritance.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/loop-newline.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/loop-newline.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/loop-newline.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/loop-newline.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-array-assignment1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-array-assignment1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-array-assignment1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-array-assignment1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiple-quotes.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiple-quotes.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiple-quotes.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiple-quotes.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiple-redirections.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiple-redirections.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiple-redirections.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/multiple-redirections.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob-alias.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob-alias.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob-alias.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob-alias.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob-always.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob-always.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob-always.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob-always.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/noglob4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/null-exec.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/null-exec.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/null-exec.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/null-exec.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/null-exec2-printenv.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/null-exec2-printenv.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/null-exec2-printenv.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/null-exec2-printenv.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/number_range-glob.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/number_range-glob.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/number_range-glob.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/number_range-glob.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/off-by-one.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/off-by-one.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/off-by-one.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/off-by-one.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/opt-shwordsplit1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/opt-shwordsplit1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/opt-shwordsplit1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/opt-shwordsplit1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/optimized-cmdsubst-input.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/optimized-cmdsubst-input.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/optimized-cmdsubst-input.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/optimized-cmdsubst-input.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-dollar-quote-isnt-filename.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-dollar-quote-isnt-filename.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-dollar-quote-isnt-filename.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-dollar-quote-isnt-filename.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-path_dirs.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-path_dirs.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-path_dirs.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-path_dirs.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-with-quotes.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-with-quotes.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-with-quotes.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/option-with-quotes.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/order-path-after-dollar.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/order-path-after-dollar.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/order-path-after-dollar.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/order-path-after-dollar.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/order-path-before-globbing.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/order-path-before-globbing.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/order-path-before-globbing.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/order-path-before-globbing.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-positional-in-array-append.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-positional-in-array-append.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-positional-in-array-append.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-positional-in-array-append.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-elision-command-word.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-elision-command-word.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-elision-command-word.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-elision-command-word.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-shwordsplit.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-shwordsplit.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-shwordsplit.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-shwordsplit.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-star.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-star.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-star.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-star.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-to-global-alias.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-to-global-alias.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-to-global-alias.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-to-global-alias.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/pasted-quotes.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/pasted-quotes.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/pasted-quotes.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/pasted-quotes.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-broken-symlink.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-broken-symlink.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-broken-symlink.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-broken-symlink.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3b.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3b.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3b.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3b.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-mixed-quoting.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-mixed-quoting.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-mixed-quoting.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-mixed-quoting.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-separators.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-separators.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-separators.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-separators.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-separators2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-separators2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-separators2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-separators2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-space.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-space.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-space.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-space.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-named.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-named.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-named.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-named.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/plain-file-in-command-position.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/plain-file-in-command-position.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/plain-file-in-command-position.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/plain-file-in-command-position.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-then-assignment.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-then-assignment.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-then-assignment.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-then-assignment.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-uninstalled.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-uninstalled.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-uninstalled.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-uninstalled.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-unknown-option.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-unknown-option.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-unknown-option.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand-unknown-option.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand4.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand4.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand4.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/precommand4.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/prefix-redirection.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/prefix-redirection.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/prefix-redirection.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/prefix-redirection.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-after-redirection.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-after-redirection.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-after-redirection.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-after-redirection.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-redirection-isnt-globbing.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-redirection-isnt-globbing.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-redirection-isnt-globbing.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-redirection-isnt-globbing.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/quoted-command-substitution-empty.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/quoted-command-substitution-empty.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/quoted-command-substitution-empty.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/quoted-command-substitution-empty.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/quoted-redirection-in-command-word.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/quoted-redirection-in-command-word.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/quoted-redirection-in-command-word.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/quoted-redirection-in-command-word.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/rc-quotes.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/rc-quotes.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/rc-quotes.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/rc-quotes.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-comment.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-comment.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-comment.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-comment.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-from-param.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-from-param.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-from-param.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-from-param.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-in-cmdsubst.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-in-cmdsubst.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-in-cmdsubst.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-in-cmdsubst.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-inhibits-elision.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-inhibits-elision.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-inhibits-elision.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-inhibits-elision.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-is-not-option.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-is-not-option.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-is-not-option.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-is-not-option.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-special-cases.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-special-cases.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-special-cases.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection-special-cases.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/redirection3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/reserved-word.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/reserved-word.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/reserved-word.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/reserved-word.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/simple-command.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/simple-command.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/simple-command.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/simple-command.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/simple-redirection.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/simple-redirection.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/simple-redirection.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/simple-redirection.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/subshell.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/subshell.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/subshell.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/subshell.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-command.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-command.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-command.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-command.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-comment.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-comment.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-comment.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-comment.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-longopt.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-longopt.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-longopt.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-longopt.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection3.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection3.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection3.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection3.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/tilde-command-word.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/tilde-command-word.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/tilde-command-word.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/tilde-command-word.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect1.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect1.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect1.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect1.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect2.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect2.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect2.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect2.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/unbackslash.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/unbackslash.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/unbackslash.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/unbackslash.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/unknown-command.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/unknown-command.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/unknown-command.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/unknown-command.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/vanilla-newline.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/vanilla-newline.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/vanilla-newline.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/vanilla-newline.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/vi-linewise-mode.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/vi-linewise-mode.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/main/test-data/vi-linewise-mode.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/main/test-data/vi-linewise-mode.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/pattern/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/pattern/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/pattern/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/pattern/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/pattern/pattern-highlighter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/pattern/pattern-highlighter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/pattern/pattern-highlighter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/pattern/pattern-highlighter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/pattern/test-data/rm-rf.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/pattern/test-data/rm-rf.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/pattern/test-data/rm-rf.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/pattern/test-data/rm-rf.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/regexp-highlighter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/regexp-highlighter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/regexp-highlighter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/regexp-highlighter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/complex.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/complex.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/complex.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/complex.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/subexpression.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/subexpression.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/subexpression.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/subexpression.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/word-boundary.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/word-boundary.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/word-boundary.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/regexp/test-data/word-boundary.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/root/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/root/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/root/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/root/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/root/root-highlighter.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/root/root-highlighter.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/highlighters/root/root-highlighter.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/highlighters/root/root-highlighter.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after1-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/after1-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after1-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/after1-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after1.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/after1.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after1.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/after1.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after2-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/after2-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after2-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/after2-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after2.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/after2.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after2.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/after2.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after3-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/after3-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after3-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/after3-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after3.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/after3.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after3.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/after3.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after4-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/after4-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/after4-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/after4-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before1-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/before1-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before1-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/before1-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before1.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/before1.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before1.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/before1.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before2-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/before2-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before2-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/before2-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before2.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/before2.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before2.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/before2.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before3-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/before3-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before3-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/before3-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before3.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/before3.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before3.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/before3.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before4-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/before4-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/before4-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/before4-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/preview-smaller.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/preview-smaller.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/preview-smaller.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/preview-smaller.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/preview.png b/.config/zsh/config/plugins/zsh-syntax-highlighting/images/preview.png similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/images/preview.png rename to .config/zsh/config/plugins/zsh-syntax-highlighting/images/preview.png diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/release.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/release.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/release.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/release.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/README.md b/.config/zsh/config/plugins/zsh-syntax-highlighting/tests/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/README.md rename to .config/zsh/config/plugins/zsh-syntax-highlighting/tests/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/edit-failed-tests b/.config/zsh/config/plugins/zsh-syntax-highlighting/tests/edit-failed-tests similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/edit-failed-tests rename to .config/zsh/config/plugins/zsh-syntax-highlighting/tests/edit-failed-tests diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/generate.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/tests/generate.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/generate.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/tests/generate.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/tap-colorizer.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/tests/tap-colorizer.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/tap-colorizer.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/tests/tap-colorizer.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/tap-filter b/.config/zsh/config/plugins/zsh-syntax-highlighting/tests/tap-filter similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/tap-filter rename to .config/zsh/config/plugins/zsh-syntax-highlighting/tests/tap-filter diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/test-highlighting.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/tests/test-highlighting.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/test-highlighting.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/tests/test-highlighting.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/test-perfs.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/tests/test-perfs.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/test-perfs.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/tests/test-perfs.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/test-zprof.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/tests/test-zprof.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/tests/test-zprof.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/tests/test-zprof.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh b/.config/zsh/config/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh rename to .config/zsh/config/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-vi-mode/.github/FUNDING.yml b/.config/zsh/config/plugins/zsh-vi-mode/.github/FUNDING.yml similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-vi-mode/.github/FUNDING.yml rename to .config/zsh/config/plugins/zsh-vi-mode/.github/FUNDING.yml diff --git a/.config/zsh/config/omz/plugins/zsh-vi-mode/.github/ISSUE_TEMPLATE.md b/.config/zsh/config/plugins/zsh-vi-mode/.github/ISSUE_TEMPLATE.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-vi-mode/.github/ISSUE_TEMPLATE.md rename to .config/zsh/config/plugins/zsh-vi-mode/.github/ISSUE_TEMPLATE.md diff --git a/.config/zsh/config/omz/plugins/zsh-vi-mode/LICENSE b/.config/zsh/config/plugins/zsh-vi-mode/LICENSE similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-vi-mode/LICENSE rename to .config/zsh/config/plugins/zsh-vi-mode/LICENSE diff --git a/.config/zsh/config/omz/plugins/zsh-vi-mode/README.md b/.config/zsh/config/plugins/zsh-vi-mode/README.md similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-vi-mode/README.md rename to .config/zsh/config/plugins/zsh-vi-mode/README.md diff --git a/.config/zsh/config/omz/plugins/zsh-vi-mode/zsh-vi-mode.plugin.zsh b/.config/zsh/config/plugins/zsh-vi-mode/zsh-vi-mode.plugin.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-vi-mode/zsh-vi-mode.plugin.zsh rename to .config/zsh/config/plugins/zsh-vi-mode/zsh-vi-mode.plugin.zsh diff --git a/.config/zsh/config/omz/plugins/zsh-vi-mode/zsh-vi-mode.zsh b/.config/zsh/config/plugins/zsh-vi-mode/zsh-vi-mode.zsh similarity index 100% rename from .config/zsh/config/omz/plugins/zsh-vi-mode/zsh-vi-mode.zsh rename to .config/zsh/config/plugins/zsh-vi-mode/zsh-vi-mode.zsh