oh-my-devpod 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +29 -0
- package/bin/omd +40 -0
- package/lib/platform.js +80 -0
- package/lib/postinstall.js +40 -0
- package/lib/source.js +45 -0
- package/package.json +49 -0
- package/runtime/VERSION +1 -0
- package/runtime/bin/omd +0 -0
- package/runtime/build/install-antidote.sh +26 -0
- package/runtime/build/install-lazyvim.sh +65 -0
- package/runtime/components.toml +171 -0
- package/runtime/config/.p10k.zsh +193 -0
- package/runtime/config/.zsh_plugins.txt +17 -0
- package/runtime/config/.zshrc +53 -0
- package/runtime/install/bootstrap.sh +474 -0
- package/runtime/install/update.sh +264 -0
- package/runtime/modules/core/linuxbrew.sh +95 -0
- package/runtime/modules/core/micromamba.sh +26 -0
- package/runtime/modules/core/uv.sh +26 -0
- package/runtime/modules/core/zsh.sh +33 -0
- package/runtime/modules/lib/common.sh +372 -0
- package/runtime/modules/lib/postflight.sh +20 -0
- package/runtime/modules/tools/atuin.sh +26 -0
- package/runtime/modules/tools/bat.sh +26 -0
- package/runtime/modules/tools/btop.sh +26 -0
- package/runtime/modules/tools/fd.sh +26 -0
- package/runtime/modules/tools/fzf.sh +26 -0
- package/runtime/modules/tools/git.sh +26 -0
- package/runtime/modules/tools/jq.sh +26 -0
- package/runtime/modules/tools/lazyvim.sh +71 -0
- package/runtime/modules/tools/neovim.sh +26 -0
- package/runtime/modules/tools/ripgrep.sh +26 -0
- package/runtime/modules/tools/yazi.sh +26 -0
- package/runtime/modules/tools/zellij.sh +26 -0
- package/runtime/modules/tools/zsh-config.sh +155 -0
- package/runtime/vendor/nvim/lazyvim-starter/.neoconf.json +15 -0
- package/runtime/vendor/nvim/lazyvim-starter/.oh-my-devpod-source-commit +1 -0
- package/runtime/vendor/nvim/lazyvim-starter/LICENSE +201 -0
- package/runtime/vendor/nvim/lazyvim-starter/README.md +4 -0
- package/runtime/vendor/nvim/lazyvim-starter/init.lua +2 -0
- package/runtime/vendor/nvim/lazyvim-starter/lua/config/autocmds.lua +8 -0
- package/runtime/vendor/nvim/lazyvim-starter/lua/config/keymaps.lua +3 -0
- package/runtime/vendor/nvim/lazyvim-starter/lua/config/lazy.lua +53 -0
- package/runtime/vendor/nvim/lazyvim-starter/lua/config/options.lua +3 -0
- package/runtime/vendor/nvim/lazyvim-starter/lua/plugins/example.lua +197 -0
- package/runtime/vendor/nvim/lazyvim-starter/stylua.toml +3 -0
- package/runtime/vendor/releases/antidote/v2.0.10/SHA256SUMS +1 -0
- package/runtime/vendor/releases/antidote/v2.0.10/antidote-v2.0.10.tar.gz +0 -0
- package/runtime/vendor/zsh/ohmyzsh/.devcontainer/devcontainer.json +20 -0
- package/runtime/vendor/zsh/ohmyzsh/.editorconfig +15 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/CODEOWNERS +19 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/FUNDING.yml +6 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/INCIDENT_RESPONSE_PLAN.md +87 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/bug_report.yml +68 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/bug_report_omz.yml +77 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/feature_request.yml +37 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/PULL_REQUEST_TEMPLATE.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/dependabot.yml +14 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/dependencies.yml +56 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies/requirements.txt +7 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies/updater.py +619 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies.yml +43 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer/.vercelignore +2 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer/vercel.json +23 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer.yml +66 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/main.yml +43 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/project.yml +155 -0
- package/runtime/vendor/zsh/ohmyzsh/.github/workflows/scorecard.yml +65 -0
- package/runtime/vendor/zsh/ohmyzsh/.prettierrc +4 -0
- package/runtime/vendor/zsh/ohmyzsh/CODE_OF_CONDUCT.md +76 -0
- package/runtime/vendor/zsh/ohmyzsh/CONTRIBUTING.md +270 -0
- package/runtime/vendor/zsh/ohmyzsh/LICENSE.txt +21 -0
- package/runtime/vendor/zsh/ohmyzsh/README.md +564 -0
- package/runtime/vendor/zsh/ohmyzsh/SECURITY.md +23 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/async_prompt.zsh +145 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/bzr.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/cli.zsh +944 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/clipboard.zsh +107 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/compfix.zsh +44 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/completion.zsh +78 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/correction.zsh +10 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/diagnostics.zsh +353 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/directories.zsh +40 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/functions.zsh +284 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/git.zsh +367 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/grep.zsh +41 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/history.zsh +48 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/key-bindings.zsh +145 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/misc.zsh +38 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/nvm.zsh +6 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/prompt_info_functions.zsh +45 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/spectrum.zsh +38 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/termsupport.zsh +164 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/tests/cli.test.zsh +169 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/theme-and-appearance.zsh +81 -0
- package/runtime/vendor/zsh/ohmyzsh/lib/vcs_info.zsh +53 -0
- package/runtime/vendor/zsh/ohmyzsh/oh-my-zsh.sh +234 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/1password/1password.plugin.zsh +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/1password/README.md +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/1password/_opswd +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/1password/opswd +49 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/.zunit.yml +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/README.md +70 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/alias-finder.plugin.zsh +70 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_output/.gitkeep +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_support/.gitkeep +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_support/bootstrap +2 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/test_run.sh +107 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/README.md +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/aliases.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/cheatsheet.py +69 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/termcolor.py +168 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ansible/README.md +31 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ansible/ansible.plugin.zsh +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ant/README.md +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ant/_ant +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ant/ant.plugin.zsh +2 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/apache2-macports/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/apache2-macports/apache2-macports.plugin.zsh +6 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/arcanist/README.md +43 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/arcanist/arcanist.plugin.zsh +39 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/archlinux/README.md +184 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/archlinux/archlinux.plugin.zsh +204 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/arduino-cli/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/arduino-cli/arduino-cli.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/argocd/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/argocd/argocd.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/asdf/README.md +48 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/asdf/asdf.plugin.zsh +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/autoenv/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/autoenv/autoenv.plugin.zsh +80 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/autojump/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/autojump/autojump.plugin.zsh +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/autopep8/README.md +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/autopep8/_autopep8 +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/aws/README.md +98 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/aws/aws.plugin.zsh +338 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/azure/README.md +49 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/azure/azure.plugin.zsh +60 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/battery/README.md +42 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/battery/battery.plugin.zsh +314 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/README.md +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/_bazel +341 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/bazel.plugin.zsh +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bbedit/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bbedit/bbedit.plugin.zsh +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bedtools/README.md +5 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bedtools/_bedtools +64 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bgnotify/README.md +64 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bgnotify/bgnotify.plugin.zsh +144 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bower/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bower/_bower +58 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bower/bower.plugin.zsh +84 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/branch/README.md +49 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/branch/branch.plugin.zsh +35 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/brew/README.md +68 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/brew/brew.plugin.zsh +85 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bridgetown/README.md +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bridgetown/bridgetown.plugin.zsh +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/buf/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/buf/buf.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bun/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bun/bun.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/README.md +74 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/_bundler +105 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/bundler.plugin.zsh +95 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cabal/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cabal/cabal.plugin.zsh +93 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cake/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cake/cake.plugin.zsh +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cakephp3/README.md +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cakephp3/cakephp3.plugin.zsh +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/README.md +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/_capistrano +49 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/capistrano.plugin.zsh +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cask/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cask/cask.plugin.zsh +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/README.md +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/catimg.plugin.zsh +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/catimg.sh +92 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/colors.png +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/celery/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/celery/_celery +129 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/charm/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/charm/charm.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/chezmoi/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/chezmoi/chezmoi.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/chruby/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/chruby/chruby.plugin.zsh +90 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/README.md +45 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/chucknorris.plugin.zsh +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/fortunes/chucknorris +568 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cloudfoundry/README.md +58 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cloudfoundry/cloudfoundry.plugin.zsh +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/codeclimate/README.md +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/codeclimate/_codeclimate +82 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/README.md +31 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/_coffee +81 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/coffee.plugin.zsh +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/README.md +48 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/colemak-less +6 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/colemak.plugin.zsh +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/README.md +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/colored-man-pages.plugin.zsh +54 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/nroff +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/colorize/README.md +56 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/colorize/colorize.plugin.zsh +114 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/command-not-found/README.md +36 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/command-not-found/command-not-found.plugin.zsh +76 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/common-aliases/README.md +130 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/common-aliases/common-aliases.plugin.zsh +90 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/compleat/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/compleat/compleat.plugin.zsh +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/composer/README.md +35 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/composer/composer.plugin.zsh +76 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/conda/README.md +37 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/conda/conda.plugin.zsh +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/conda-env/README.md +44 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/conda-env/conda-env.plugin.zsh +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/copybuffer/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/copybuffer/copybuffer.plugin.zsh +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/copyfile/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/copyfile/copyfile.plugin.zsh +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/copypath/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/copypath/copypath.plugin.zsh +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cp/README.md +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cp/cp.plugin.zsh +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cpanm/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/cpanm/_cpanm +64 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dash/README.md +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dash/dash.plugin.zsh +84 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dbt/README.md +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dbt/dbt.plugin.zsh +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/debian/README.md +92 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/debian/debian.plugin.zsh +227 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/deno/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/deno/deno.plugin.zsh +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dircycle/README.md +82 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dircycle/dircycle.plugin.zsh +87 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/direnv/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/direnv/direnv.plugin.zsh +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dirhistory/README.md +105 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dirhistory/dirhistory.plugin.zsh +236 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dirpersist/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dirpersist/dirpersist.plugin.zsh +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/README.md +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/_dnf5 +570 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/dnf.plugin.zsh +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dnote/README.md +51 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dnote/_dnote +39 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/docker/README.md +89 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/docker/completions/_docker +3126 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/docker/docker.plugin.zsh +69 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/README.md +36 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/_docker-compose +421 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/docker-compose.plugin.zsh +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/doctl/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/doctl/doctl.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dotenv/README.md +100 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dotenv/dotenv.plugin.zsh +67 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dotnet/README.md +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/dotnet/dotnet.plugin.zsh +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/droplr/README.md +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/droplr/droplr.plugin.zsh +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/drush/README.md +66 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/drush/drush.complete.sh +50 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/drush/drush.plugin.zsh +107 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/eecms/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/eecms/eecms.plugin.zsh +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/README.md +30 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/emacs.plugin.zsh +68 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/emacsclient.sh +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/README.md +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/_ember-cli +189 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/ember-cli.plugin.zsh +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/README.md +127 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji-char-definitions.zsh +7274 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji-data.txt +4122 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji.plugin.zsh +110 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/gemoji_db.json +21538 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/update_emoji.py +213 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emoji-clock/README.md +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emoji-clock/emoji-clock.plugin.zsh +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/README.md +39 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty.plugin.zsh +55 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_emoji_set.zsh +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_floral_set.zsh +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_love_set.zsh +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_nature_set.zsh +58 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_stellar_set.zsh +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_zodiac_set.zsh +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/encode64/README.md +73 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/encode64/encode64.plugin.zsh +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/extract/README.md +69 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/extract/_extract +57 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/extract/extract.plugin.zsh +145 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/eza/README.md +144 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/eza/eza.plugin.zsh +76 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/_fab +69 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/fabric.plugin.zsh +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fancy-ctrl-z/README.md +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fasd/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fasd/fasd.plugin.zsh +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fastfile/README.md +85 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fastfile/fastfile.plugin.zsh +128 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fbterm/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fbterm/fbterm.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/firewalld/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/firewalld/firewalld.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/flutter/README.md +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/flutter/flutter.plugin.zsh +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fluxcd/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fluxcd/fluxcd.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fnm/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fnm/fnm.plugin.zsh +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/foot/README.md +35 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/foot/foot.plugin.zsh +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/forklift/README.md +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/forklift/forklift.plugin.zsh +128 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/README.md +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/_fossil +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/fossil.plugin.zsh +56 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/README.md +85 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/_frontend +161 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/frontend-search.plugin.zsh +119 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fzf/README.md +52 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/fzf/fzf.plugin.zsh +274 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gas/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gas/_gas +39 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gatsby/README.md +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gatsby/_gatsby +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gcloud/README.md +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gcloud/gcloud.plugin.zsh +52 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/_geeknote +157 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/geeknote.plugin.zsh +2 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gem/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gem/completions/_gem +72 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gem/gem.plugin.zsh +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/README.md +66 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-apple +79 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-monkey +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-xkcd +68 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass.plugin.zsh +1 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gh/README.md +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gh/gh.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git/README.md +275 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git/git.plugin.zsh +431 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-auto-fetch/README.md +50 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh +65 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-commit/README.md +47 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-commit/git-commit.plugin.zsh +58 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/README.md +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/git-escape-magic +135 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/git-escape-magic.plugin.zsh +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-extras/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-extras/git-extras.plugin.zsh +418 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/README.md +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/_git-flow +327 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/git-flow.plugin.zsh +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow-avh/README.md +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh +526 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-hubflow/README.md +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-hubflow/git-hubflow.plugin.zsh +333 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-lfs/README.md +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-lfs/git-lfs.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/README.md +72 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/git-prompt.plugin.zsh +113 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/gitstatus.py +103 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/MANUAL.adoc +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/_git +274 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/git-completion.bash +3562 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/git-prompt.sh +594 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/gitfast.plugin.zsh +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/github/README.md +45 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/github/_hub +174 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/github/github.plugin.zsh +77 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gitignore/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gitignore/gitignore.plugin.zsh +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/_asadmin +1150 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/glassfish.plugin.zsh +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/globalias/README.md +79 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/globalias/globalias.plugin.zsh +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gnu-utils/README.md +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gnu-utils/gnu-utils.plugin.zsh +74 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/golang/README.md +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/golang/_golang +249 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/golang/golang.plugin.zsh +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/golang/templates/package.txt +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/golang/templates/search.txt +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gpg-agent/README.md +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gpg-agent/gpg-agent.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/LICENSE +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/README.md +30 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/_gradle +503 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/gradle.plugin.zsh +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/grails/README.md +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/grails/grails.plugin.zsh +60 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/grc/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/grc/grc.plugin.zsh +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/grunt/README.md +37 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/grunt/grunt.plugin.zsh +255 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gulp/README.md +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/gulp/gulp.plugin.zsh +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hanami/README.md +45 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hanami/hanami.plugin.zsh +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hasura/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hasura/hasura.plugin.zsh +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hcloud/README.md +143 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hcloud/hcloud.plugin.zsh +129 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/helm/README.md +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/helm/helm.plugin.zsh +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/heroku/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/heroku/heroku.plugin.zsh +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/heroku-alias/README.md +140 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/heroku-alias/heroku-alias.plugin.zsh +92 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/history/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/history/history.plugin.zsh +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/README.md +251 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/dependencies/OMZ-README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/history-substring-search.plugin.zsh +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/history-substring-search.zsh +846 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/README.md +44 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/fortunes/hitchhiker +275 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/hitchhiker.plugin.zsh +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hitokoto/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/hitokoto/hitokoto.plugin.zsh +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/homestead/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/homestead/homestead.plugin.zsh +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/httpie/README.md +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/httpie/_httpie +181 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/invoke/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/invoke/invoke.plugin.zsh +5 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ionic/README.md +30 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ionic/ionic.plugin.zsh +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/LICENSE +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/_ipfs +791 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/isodate/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/isodate/isodate.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/istioctl/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/istioctl/istioctl.plugin.zsh +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/README.md +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/iterm2.plugin.zsh +79 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/iterm2_shell_integration.zsh +178 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/update +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jake-node/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jake-node/jake-node.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jenv/README.md +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jenv/jenv.plugin.zsh +36 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jfrog/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jfrog/jfrog.plugin.zsh +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jhbuild/README.md +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jhbuild/jhbuild.plugin.zsh +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jira/README.md +103 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jira/_jira +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jira/jira.plugin.zsh +183 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jj/README.md +127 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jj/jj.plugin.zsh +71 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jruby/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jruby/jruby.plugin.zsh +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jsontools/README.md +90 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jsontools/jsontools.plugin.zsh +113 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/juju/README.md +132 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/juju/juju.plugin.zsh +202 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jump/README.md +31 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/jump/jump.plugin.zsh +60 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/k9s/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/k9s/k9s.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/README.md +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/_kamal +691 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/kamal.plugin.zsh +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kate/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kate/kate.plugin.zsh +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/keychain/README.md +45 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/keychain/keychain.plugin.zsh +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kind/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kind/kind.plugin.zsh +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kitchen/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kitchen/_kitchen +85 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kitty/README.md +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kitty/kitty.plugin.zsh +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kn/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kn/kn.plugin.zsh +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/knife/README.md +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/knife/_knife +257 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/knife_ssh/README.md +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/knife_ssh/knife_ssh.plugin.zsh +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kompose/README.md +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kompose/kompose.plugin.zsh +3 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kops/README.md +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kops/kops.plugin.zsh +3 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/LICENSE +201 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/README.md +354 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/kube-ps1.plugin.zsh +440 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kubectl/README.md +145 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kubectl/kubectl.plugin.zsh +208 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/README.md +56 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/kubectx.plugin.zsh +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/prod.png +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/stage.png +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lando/LICENSE +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lando/README.md +56 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lando/lando.plugin.zsh +52 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/README.md +64 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/_artisan +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/laravel.plugin.zsh +48 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/laravel4/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/laravel4/laravel4.plugin.zsh +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/laravel5/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/laravel5/laravel5.plugin.zsh +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/last-working-dir/README.md +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/last-working-dir/last-working-dir.plugin.zsh +31 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lein/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lein/_lein +69 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lighthouse/README.md +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lighthouse/lighthouse.plugin.zsh +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/README.md +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/localstack.plugin.zsh +37 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/sqs-send-result.png +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lol/README.md +71 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lol/lol.plugin.zsh +51 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lpass/README.md +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lpass/_lpass +169 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lxd/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/lxd/lxd.plugin.zsh +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/macos/README.md +70 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/macos/_security +90 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/macos/macos.plugin.zsh +316 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/macos/music +170 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/macos/spotify +479 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/macports/README.md +47 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/macports/_port +92 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/macports/macports.plugin.zsh +44 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/magic-enter/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/magic-enter/magic-enter.plugin.zsh +42 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/man/README.md +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/man/man.plugin.zsh +37 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/marked2/README.md +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/marked2/marked2.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/marktext/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/marktext/marktext.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mercurial/README.md +69 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mercurial/mercurial.plugin.zsh +118 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/README.md +46 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/_meteor +67 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/meteor.plugin.zsh +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/microk8s/README.md +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/microk8s/microk8s.plugin.zsh +82 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/minikube/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/minikube/minikube.plugin.zsh +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mise/README.md +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mise/mise.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mix/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mix/_mix +170 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mix-fast/README.md +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mix-fast/mix-fast.plugin.zsh +30 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/molecule/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/molecule/molecule.plugin.zsh +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mongo-atlas/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mongo-atlas/mongo-atlas.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mongocli/README.md +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mongocli/mongocli.plugin.zsh +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mosh/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mosh/mosh.plugin.zsh +2 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/_multipass +73 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/multipass.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mvn/README.md +63 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mvn/mvn.plugin.zsh +352 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mysql-macports/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/mysql-macports/mysql-macports.plugin.zsh +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/n98-magerun/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/n98-magerun/n98-magerun.plugin.zsh +42 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/_nanoc +92 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/nanoc.plugin.zsh +6 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nats/README.md +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nats/nats.plugin.zsh +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nestjs/README.md +52 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nestjs/nestjs.plugin.zsh +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ng/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ng/_ng +56 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ngrok/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ngrok/ngrok.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nmap/README.md +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nmap/nmap.plugin.zsh +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/node/README.md +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/node/node.plugin.zsh +6 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nodenv/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nodenv/nodenv.plugin.zsh +43 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nomad/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nomad/_nomad +153 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/npm/README.md +50 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/npm/npm.plugin.zsh +117 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nvm/README.md +60 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/nvm/nvm.plugin.zsh +99 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/oc/README.md +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/oc/oc.plugin.zsh +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/octozen/README.md +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/octozen/octozen.plugin.zsh +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/opentofu/README.md +61 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/opentofu/opentofu.plugin.zsh +46 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/operator-sdk/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/operator-sdk/operator-sdk.plugin.zsh +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/otp/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/otp/otp.plugin.zsh +45 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pass/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pass/_pass +147 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/paver/README.md +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/paver/paver.plugin.zsh +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pep8/README.md +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pep8/_pep8 +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/per-directory-history/README.md +50 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/per-directory-history/per-directory-history.zsh +178 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/percol/README.md +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/percol/percol.plugin.zsh +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/perl/README.md +43 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/perl/perl.plugin.zsh +65 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/perms/README.md +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/perms/perms.plugin.zsh +87 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/phing/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/phing/phing.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pip/README.md +36 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pip/_pip +100 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pip/pip.plugin.zsh +135 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pipenv/README.md +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pipenv/pipenv.plugin.zsh +57 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pj/README.md +45 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pj/pj.plugin.zsh +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/please/README.md +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/please/please.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/README.md +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/_pm2 +374 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/pm2.plugin.zsh +6 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pod/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pod/_pod +682 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/podman/README.md +47 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/podman/podman.plugin.zsh +47 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/poetry/README.md +42 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/poetry/poetry.plugin.zsh +42 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/poetry-env/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/poetry-env/poetry-env.plugin.zsh +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/postgres/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/postgres/postgres.plugin.zsh +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pow/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pow/pow.plugin.zsh +85 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/powder/README.md +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/powder/_powder +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/powify/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/powify/_powify +55 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pre-commit/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pre-commit/pre-commit.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/procs/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/procs/procs.plugin.zsh +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/profiles/README.md +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/profiles/profiles.plugin.zsh +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pulumi/README.md +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pulumi/pulumi.plugin.zsh +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pyenv/README.md +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pyenv/pyenv.plugin.zsh +108 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/README.md +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/_pylint +31 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/pylint.plugin.zsh +1 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/python/README.md +68 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/python/python.plugin.zsh +122 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/qodana/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/qodana/qodana.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/qrcode/README.md +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/qrcode/qrcode.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rails/README.md +122 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rails/_rails +538 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rails/rails.plugin.zsh +120 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rake/README.md +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rake/rake.plugin.zsh +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rake-fast/README.md +35 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rake-fast/rake-fast.plugin.zsh +79 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rand-quote/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rand-quote/rand-quote.plugin.zsh +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rbenv/README.md +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rbenv/rbenv.plugin.zsh +68 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rbw/README.md +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rbw/rbw.plugin.zsh +58 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rclone/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rclone/rclone.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/README.md +92 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/_react-native +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/react-native.plugin.zsh +79 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rebar/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rebar/_rebar +79 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/redis-cli/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/redis-cli/_redis-cli +142 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/repo/README.md +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/repo/_repo +281 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/repo/repo.plugin.zsh +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ros/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ros/_ros +64 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rsync/README.md +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rsync/rsync.plugin.zsh +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ruby/README.md +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ruby/ruby.plugin.zsh +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rust/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rust/_rustc +228 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rust/rust.plugin.zsh +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rvm/README.md +37 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/rvm/rvm.plugin.zsh +56 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/safe-paste/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/safe-paste/safe-paste.plugin.zsh +101 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/salt/README.md +5 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/salt/_salt +279 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/samtools/README.md +5 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/samtools/_samtools +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/README.md +32 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/_sbt +56 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/sbt.plugin.zsh +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/scala/README.md +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/scala/_scala +249 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/scd/README.md +159 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/scd/_scd +60 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/scd/scd +533 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/scd/scd.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/screen/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/screen/screen.plugin.zsh +58 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/scw/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/scw/scw.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sdk/README.md +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sdk/sdk.plugin.zsh +58 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sfdx/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sfdx/_sfdx +1110 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sfffe/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sfffe/sfffe.plugin.zsh +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/.editorconfig +3 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/README.md +67 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/proxy.py +91 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/shell-proxy.plugin.zsh +44 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/ssh-agent.py +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/ssh-proxy.py +37 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/shrink-path/README.md +116 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/shrink-path/shrink-path.plugin.zsh +197 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sigstore/README.md +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sigstore/sigstore.plugin.zsh +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/singlechar/README.md +118 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/singlechar/singlechar.plugin.zsh +123 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/skaffold/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/skaffold/skaffold.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/snap/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/snap/snap.plugin.zsh +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/spackenv/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/spackenv/spackenv.plugin.zsh +5 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/spring/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/spring/_spring +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sprunge/README.md +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sprunge/sprunge.plugin.zsh +52 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ssh/README.md +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ssh/ssh.plugin.zsh +53 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ssh-agent/README.md +133 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ssh-agent/ssh-agent.plugin.zsh +119 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/stack/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/stack/stack.plugin.zsh +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/starship/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/starship/starship.plugin.zsh +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/stripe/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/stripe/stripe.plugin.zsh +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sublime/README.md +37 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sublime/sublime.plugin.zsh +124 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sublime-merge/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sublime-merge/sublime-merge.plugin.zsh +55 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sudo/README.md +75 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/sudo/sudo.plugin.zsh +108 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/README.md +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/_supervisorctl +143 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/_supervisord +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/supervisor.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/suse/README.md +98 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/suse/suse.plugin.zsh +59 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/svcat/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/svcat/svcat.plugin.zsh +6 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/svn/README.md +67 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/svn/svn.plugin.zsh +89 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/svn-fast-info/README.md +56 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/svn-fast-info/svn-fast-info.plugin.zsh +74 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/README.md +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/_swift +844 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/swiftpm.plugin.zsh +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/symfony/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/symfony/symfony.plugin.zsh +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/symfony2/README.md +28 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/symfony2/symfony2.plugin.zsh +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/symfony6/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/symfony6/symfony6.plugin.zsh +82 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/systemadmin/README.md +52 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/systemadmin/systemadmin.plugin.zsh +188 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/systemd/README.md +98 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/systemd/systemd.plugin.zsh +121 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tailscale/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tailscale/tailscale.plugin.zsh +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/task/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/task/task.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/_task +285 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/taskwarrior.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/term_tab/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/term_tab/term_tab.plugin.zsh +42 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/terminitor/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/terminitor/_terminitor +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/README.md +61 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/_terraform +545 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/terraform.plugin.zsh +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/textastic/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/textastic/textastic.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/textmate/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/textmate/textmate.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/thefuck/README.md +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/thefuck/thefuck.plugin.zsh +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/themes/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/themes/themes.plugin.zsh +35 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/thor/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/thor/_thor +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tig/README.md +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tig/tig.plugin.zsh +5 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/timer/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/timer/timer.plugin.zsh +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/timoni/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/timoni/timoni.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tldr/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tldr/tldr.plugin.zsh +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/README.md +48 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.extra.conf +2 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.only.conf +1 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.plugin.zsh +204 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmux-cssh/README.md +10 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmux-cssh/_tmux-cssh +25 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/README.md +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/_tmuxinator +23 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/tmuxinator.plugin.zsh +5 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/toolbox/README.md +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/toolbox/toolbox.plugin.zsh +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/torrent/README.md +13 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/torrent/torrent.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/transfer/README.md +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/transfer/transfer.plugin.zsh +97 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tt/README.MD +26 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tt/tt.plugin.zsh +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tugboat/README.md +12 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/tugboat/_tugboat +106 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ubuntu/README.md +62 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ubuntu/ubuntu.plugin.zsh +138 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ufw/README.md +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/ufw/_ufw +115 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/README.md +76 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/_universalarchive +6 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/universalarchive.plugin.zsh +70 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/urltools/README.md +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/urltools/urltools.plugin.zsh +42 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/uv/README.md +36 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/uv/uv.plugin.zsh +47 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/README.md +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/_vagrant +133 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/vagrant.plugin.zsh +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant-prompt/README.md +52 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant-prompt/vagrant-prompt.plugin.zsh +18 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vault/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vault/vault.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vi-mode/README.md +197 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vi-mode/vi-mode.plugin.zsh +174 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vim-interaction/README.md +82 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vim-interaction/vim-interaction.plugin.zsh +69 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenv/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenv/virtualenv.plugin.zsh +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenvwrapper/README.md +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh +93 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/volta/README.md +11 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/volta/volta.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vscode/README.md +88 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vscode/vscode.plugin.zsh +52 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vundle/README.md +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/vundle/vundle.plugin.zsh +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/README.md +43 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/_wake +4 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/wakeonlan.plugin.zsh +14 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/watson/README.md +9 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/watson/_watson +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wd/LICENSE +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wd/README.md +297 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wd/_wd.sh +106 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wd/wd.plugin.zsh +20 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wd/wd.sh +658 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/web-search/README.md +92 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/web-search/web-search.plugin.zsh +119 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wp-cli/README.md +109 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/wp-cli/wp-cli.plugin.zsh +123 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/README.md +86 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/_xcselv +19 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/xcode.plugin.zsh +208 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/README.md +74 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/_yarn +502 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/yarn.plugin.zsh +64 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yii/README.md +15 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yii/yii.plugin.zsh +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yii2/README.md +7 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yii2/yii2.plugin.zsh +29 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yum/README.md +27 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/yum/yum.plugin.zsh +16 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/z/LICENSE +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/z/MANUAL.md +365 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/z/README.md +24 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/z/_z +82 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/demo.gif +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/mit_license.svg +1 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/zsh_4.3.11_plus.svg +1 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/z/z.plugin.zsh +1022 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zbell/README.md +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zbell/zbell.plugin.zsh +96 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/README.md +50 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/_zeus +98 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/zeus.plugin.zsh +70 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zoxide/README.md +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zoxide/zoxide.plugin.zsh +5 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/LICENSE +375 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/README.md +21 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/demo.gif +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/zsh-interactive-cd.plugin.zsh +180 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-aliases.conf +33 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-cd.conf +68 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-env.conf +38 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-functions.conf +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-history.conf +43 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-kill.conf +46 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-list.conf +55 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-options.conf +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-panelize.conf +34 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/LICENSE +700 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/Makefile +35 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/NEWS +17 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/README.md +259 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/_n-kill +41 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/generate_single_file +35 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/img/n-history2.png +0 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/install.sh +70 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/n-preview +224 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/znt-tmux.zsh +50 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-aliases +47 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-cd +71 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-env +47 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-functions +54 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-help +135 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-history +371 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-kill +96 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list +517 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list-draw +133 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list-input +377 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-options +84 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-panelize +68 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-cd-widget +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-history-widget +22 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-kill-widget +8 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-usetty-wrapper +40 -0
- package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh +77 -0
- package/runtime/vendor/zsh/ohmyzsh/templates/minimal.zshrc +5 -0
- package/runtime/vendor/zsh/ohmyzsh/templates/zshrc.zsh-template +104 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/3den.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/Soliah.zsh-theme +85 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/adben.zsh-theme +118 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/af-magic.zsh-theme +49 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/afowler.zsh-theme +10 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/agnoster.zsh-theme +377 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/alanpeabody.zsh-theme +24 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/amuse.zsh-theme +24 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/apple.zsh-theme +24 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/arrow.zsh-theme +14 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/aussiegeek.zsh-theme +8 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/avit.zsh-theme +90 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/awesomepanda.zsh-theme +16 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/bira.zsh-theme +38 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/blinks.zsh-theme +30 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/bureau.zsh-theme +133 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/candy-kingdom.zsh-theme +34 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/candy.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/clean.zsh-theme +14 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/cloud.zsh-theme +10 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/crcandy.zsh-theme +8 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/crunch.zsh-theme +39 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/cypher.zsh-theme +4 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/dallas.zsh-theme +27 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/darkblood.zsh-theme +9 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/daveverwer.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/dieter.zsh-theme +56 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/dogenpunk.zsh-theme +77 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/dpoggi.zsh-theme +11 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/dst.zsh-theme +16 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/dstufft.zsh-theme +19 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/duellj.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/eastwood.zsh-theme +23 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/edvardm.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/emotty.zsh-theme +113 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/essembeh.zsh-theme +36 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/evan.zsh-theme +2 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/fino-time.zsh-theme +38 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/fino.zsh-theme +47 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/fishy.zsh-theme +36 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/flazz.zsh-theme +19 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/fletcherm.zsh-theme +12 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/fox.zsh-theme +9 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/frisk.zsh-theme +12 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/frontcube.zsh-theme +13 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/funky.zsh-theme +14 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/fwalch.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/gallifrey.zsh-theme +11 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/gallois.zsh-theme +140 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/garyblessington.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/gentoo.zsh-theme +30 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/geoffgarside.zsh-theme +5 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/gianu.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/gnzh.zsh-theme +46 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/gozilla.zsh-theme +15 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/half-life.zsh-theme +97 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/humza.zsh-theme +26 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/imajes.zsh-theme +5 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/intheloop.zsh-theme +23 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/itchy.zsh-theme +18 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/jaischeema.zsh-theme +12 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/jbergantine.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/jispwoso.zsh-theme +10 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/jnrowe.zsh-theme +37 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/jonathan.zsh-theme +126 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/josh.zsh-theme +43 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/jreese.zsh-theme +14 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/jtriley.zsh-theme +2 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/juanghurtado.zsh-theme +44 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/junkfood.zsh-theme +30 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/kafeitu.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/kardan.zsh-theme +12 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/kennethreitz.zsh-theme +15 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/kiwi.zsh-theme +10 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/kolo.zsh-theme +24 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/kphoen.zsh-theme +43 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/lambda.zsh-theme +4 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/linuxonly.zsh-theme +58 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/lukerandall.zsh-theme +24 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/macovsky.zsh-theme +12 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/maran.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/mgutz.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/mh.zsh-theme +24 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/michelebologna.zsh-theme +78 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/mikeh.zsh-theme +21 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/miloshadzic.zsh-theme +8 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/minimal.zsh-theme +26 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/mira.zsh-theme +23 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/mlh.zsh-theme +105 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/mortalscumbag.zsh-theme +71 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/mrtazz.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/murilasso.zsh-theme +14 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/muse.zsh-theme +16 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/nanotech.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/nebirhos.zsh-theme +21 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/nicoulaj.zsh-theme +43 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/norm.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/obraun.zsh-theme +10 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/oldgallois.zsh-theme +24 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/peepcode.zsh-theme +47 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/philips.zsh-theme +14 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/pmcgee.zsh-theme +16 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/pygmalion-virtualenv.zsh-theme +54 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/pygmalion.zsh-theme +12 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/random.zsh-theme +47 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/re5et.zsh-theme +15 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/refined.zsh-theme +108 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/rgm.zsh-theme +8 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/risto.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/rixius.zsh-theme +21 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/rkj-repos.zsh-theme +35 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/rkj.zsh-theme +9 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/robbyrussell.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/sammy.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/simonoff.zsh-theme +99 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/simple.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/skaro.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/smt.zsh-theme +83 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/sonicradish.zsh-theme +37 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/sorin.zsh-theme +42 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/sporty_256.zsh-theme +13 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/steeef.zsh-theme +103 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/strug.zsh-theme +25 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/sunaku.zsh-theme +25 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/sunrise.zsh-theme +93 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/superjarin.zsh-theme +18 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/suvash.zsh-theme +21 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/takashiyoshida.zsh-theme +27 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/terminalparty.zsh-theme +8 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/theunraveler.zsh-theme +16 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/tjkirch.zsh-theme +15 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/tjkirch_mod.zsh-theme +13 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/tonotdo.zsh-theme +12 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/trapd00r.zsh-theme +132 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/wedisagree.zsh-theme +109 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/wezm+.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/wezm.zsh-theme +7 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/wuffers.zsh-theme +5 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/xiong-chiamiov-plus.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/xiong-chiamiov.zsh-theme +6 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/ys.zsh-theme +80 -0
- package/runtime/vendor/zsh/ohmyzsh/themes/zhann.zsh-theme +25 -0
- package/runtime/vendor/zsh/ohmyzsh/tools/changelog.sh +592 -0
- package/runtime/vendor/zsh/ohmyzsh/tools/check_for_upgrade.sh +302 -0
- package/runtime/vendor/zsh/ohmyzsh/tools/install.sh +579 -0
- package/runtime/vendor/zsh/ohmyzsh/tools/require_tool.sh +161 -0
- package/runtime/vendor/zsh/ohmyzsh/tools/theme_chooser.sh +98 -0
- package/runtime/vendor/zsh/ohmyzsh/tools/uninstall.sh +41 -0
- package/runtime/vendor/zsh/ohmyzsh/tools/upgrade.sh +295 -0
- package/runtime/vendor/zsh/powerlevel10k/.gitattributes +5 -0
- package/runtime/vendor/zsh/powerlevel10k/LICENSE +22 -0
- package/runtime/vendor/zsh/powerlevel10k/Makefile +14 -0
- package/runtime/vendor/zsh/powerlevel10k/README.md +2120 -0
- package/runtime/vendor/zsh/powerlevel10k/config/p10k-classic.zsh +1738 -0
- package/runtime/vendor/zsh/powerlevel10k/config/p10k-lean-8colors.zsh +1713 -0
- package/runtime/vendor/zsh/powerlevel10k/config/p10k-lean.zsh +1713 -0
- package/runtime/vendor/zsh/powerlevel10k/config/p10k-pure.zsh +193 -0
- package/runtime/vendor/zsh/powerlevel10k/config/p10k-rainbow.zsh +1833 -0
- package/runtime/vendor/zsh/powerlevel10k/config/p10k-robbyrussell.zsh +111 -0
- package/runtime/vendor/zsh/powerlevel10k/font.md +185 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/.clang-format +4 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/.gitattributes +16 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/.vscode/c_cpp_properties.json +17 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/.vscode/settings.json +72 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/LICENSE +674 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/Makefile +57 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/README.md +534 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/build +668 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/build.info +22 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/deps/.gitkeep +0 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/docs/listdir.md +330 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.plugin.sh +474 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.plugin.zsh +908 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.prompt.sh +111 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.prompt.zsh +111 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/install +476 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/install.info +34 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/mbuild +406 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/algorithm.h +37 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/arena.cc +118 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/arena.h +273 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/bits.h +29 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check.h +61 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check_dir_mtime.cc +157 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check_dir_mtime.h +31 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/dir.cc +237 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/dir.h +50 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/git.cc +250 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/git.h +115 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/gitstatus.cc +219 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/index.cc +456 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/index.h +84 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/logging.cc +139 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/logging.h +124 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/options.cc +362 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/options.h +78 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/print.h +101 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo.cc +503 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo.h +126 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo_cache.cc +167 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo_cache.h +60 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/request.cc +130 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/request.h +50 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/response.cc +73 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/response.h +50 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/scope_guard.h +56 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/serialization.h +28 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/stat.h +23 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/string_cmp.h +151 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/string_view.h +77 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/strings.cc +71 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/strings.h +37 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tag_db.cc +332 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tag_db.h +79 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/thread_pool.cc +87 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/thread_pool.h +74 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/time.h +14 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/timer.cc +72 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/timer.h +36 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tribool.h +27 -0
- package/runtime/vendor/zsh/powerlevel10k/gitstatus/usrbin/.gitkeep +0 -0
- package/runtime/vendor/zsh/powerlevel10k/internal/configure.zsh +84 -0
- package/runtime/vendor/zsh/powerlevel10k/internal/icons.zsh +1174 -0
- package/runtime/vendor/zsh/powerlevel10k/internal/notes.md +197 -0
- package/runtime/vendor/zsh/powerlevel10k/internal/p10k.zsh +9524 -0
- package/runtime/vendor/zsh/powerlevel10k/internal/parser.zsh +382 -0
- package/runtime/vendor/zsh/powerlevel10k/internal/wizard.zsh +2257 -0
- package/runtime/vendor/zsh/powerlevel10k/internal/worker.zsh +219 -0
- package/runtime/vendor/zsh/powerlevel10k/powerlevel10k.png +0 -0
- package/runtime/vendor/zsh/powerlevel10k/powerlevel10k.zsh-theme +83 -0
- package/runtime/vendor/zsh/powerlevel10k/powerlevel9k.zsh-theme +1 -0
- package/runtime/vendor/zsh/powerlevel10k/prompt_powerlevel10k_setup +1 -0
- package/runtime/vendor/zsh/powerlevel10k/prompt_powerlevel9k_setup +1 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/.editorconfig +18 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/.github/ISSUE_TEMPLATE/bug-report.md +36 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/.github/workflows/integration.yml +51 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/.rspec +3 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/.rubocop.yml +30 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/.ruby-version +1 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/CHANGELOG.md +124 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/DESCRIPTION +1 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/Dockerfile +21 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/Gemfile +5 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/Gemfile.lock +41 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/INSTALL.md +82 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/LICENSE +23 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/Makefile +35 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/README.md +188 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/URL +1 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/VERSION +1 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/ZSH_VERSIONS +14 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/install_test_zsh.sh +23 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/async_spec.rb +70 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb +14 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb +43 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb +14 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb +12 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb +13 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb +80 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb +39 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb +24 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/kill_ring_spec.rb +23 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/line_init_spec.rb +17 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/multi_line_spec.rb +8 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb +30 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/highlight_style_spec.rb +7 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb +7 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/strategy_spec.rb +55 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/widget_lists_spec.rb +121 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/spec_helper.rb +54 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/completion_spec.rb +72 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/history_spec.rb +23 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb +34 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/special_characters_helper.rb +75 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/terminal_session.rb +99 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/disable_spec.rb +19 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/enable_spec.rb +42 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/fetch_spec.rb +24 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb +26 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/async.zsh +77 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/bind.zsh +106 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/config.zsh +95 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/fetch.zsh +27 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/highlight.zsh +26 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/start.zsh +33 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/completion.zsh +137 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/history.zsh +32 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh +66 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/util.zsh +11 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/src/widgets.zsh +231 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh +1 -0
- package/runtime/vendor/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh +867 -0
- package/runtime/vendor/zsh/zsh-history-substring-search/README.md +236 -0
- package/runtime/vendor/zsh/zsh-history-substring-search/zsh-history-substring-search.plugin.zsh +2 -0
- package/runtime/vendor/zsh/zsh-history-substring-search/zsh-history-substring-search.zsh +846 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/.editorconfig +15 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/.gitattributes +1 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/.github/workflows/test.yml +75 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/.revision-hash +1 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/.version +1 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/COPYING.md +23 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/HACKING.md +99 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/INSTALL.md +169 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/Makefile +64 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/README.md +97 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/changelog.md +920 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/brackets.md +31 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/cursor.md +24 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/line.md +24 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/main.md +121 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/pattern.md +24 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/regexp.md +65 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/root.md +25 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters.md +132 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/README.md +8 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/brackets-highlighter.zsh +107 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket-line-finish.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket.zsh +47 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/empty-styles.zsh +33 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/loop-styles.zsh +53 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/mismatch-patentheses.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/near-quotes.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/nested-parentheses.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/only-error.zsh +34 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/quoted-patentheses.zsh +34 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/simple-parentheses.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses2.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/cursor/cursor-highlighter.zsh +47 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/line/line-highlighter.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/main-highlighter.zsh +1847 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1b.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position2.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3b.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position4.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position5.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-assignment1.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-basic.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-brackets.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-command-substitution.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment1.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment2.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-complex.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-empty.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous1.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous2.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-in-cmdsubst.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop2.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested-precommand.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-parameter.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument1.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument2.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument3.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument4.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-quoted.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-redirect.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse1.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse2.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse3.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse4.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse5.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-self.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-self2.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir1b.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token1.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token2.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias.zsh +53 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always1.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always2.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always3.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/anonymous-function.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arg0-colon.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith-cmdsubst-mess.zsh +46 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith1.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith2.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-command-substitution.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-doubled-parens.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-empty.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-evaluation.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-hist-expn.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-invalid-chars.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-multiplication.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-nested.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-quoted.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unclosed.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unfinished.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep1.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep2.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep3.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-append.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-argv.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array2.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array3.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-invalid-command.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array2.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-quoted-cmdsubst.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-semicolon.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-subshell.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote1.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote2.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword1.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword2.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword3.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword4.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword5.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-quoted.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-argument.zsh +58 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-open.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation2.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-space.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash.zsh +34 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-array.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-scalar.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-pipeline.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/block-assignment-no-command.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/braces1.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/braces2.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching1.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching2.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch1.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch10-if-negative.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch2.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch3.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch4.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch5.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch6.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch7.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8-if-positive.zsh +53 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch9-if-positive.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-premature-termination.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cdpath-abspath.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cmdpos-elision-partial.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-adjacent.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-in-assignment.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-unclosed.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/commandseparator.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-followed.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-leading.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-off.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comments.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/commmand-parameter.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow.zsh +57 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow2.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow3.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cthulhu.zsh +70 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dinbrack1.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dirs_blacklist.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-dollar.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-noise.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-paren.zsh +49 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted2.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted3.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-hyphen-option.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted2.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted3.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted4.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command-newline.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command2.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-line.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals1.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals2.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals3.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals4.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/escaped-single-quote.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/exec-redirection1.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/fd-target-not-filename.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-altsyntax.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-named1.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-named2.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/glob.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/global-alias1.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/globs-with-quoting.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/hashed-command.zsh +35 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-escaped.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-followed.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-no.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-unescaped.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-yes.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion2.zsh +34 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/inheritance.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob2.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/loop-newline.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval1.zsh +49 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval2.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-array-assignment1.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string2.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing2.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiple-quotes.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiple-redirections.zsh +46 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob-alias.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob-always.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob1.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob2.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob3.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob4.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/null-exec.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/null-exec2-printenv.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/number_range-glob.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/off-by-one.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/opt-shwordsplit1.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/optimized-cmdsubst-input.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-dollar-quote-isnt-filename.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-path_dirs.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-with-quotes.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/order-path-after-dollar.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/order-path-before-globbing.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-positional-in-array-append.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument1.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument3.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-elision-command-word.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-shwordsplit.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized1.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized2.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-star.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-to-global-alias.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position1.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position2.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/pasted-quotes.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-broken-symlink.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word.zsh +45 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word2.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3b.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word4.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-mixed-quoting.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-separators.zsh +53 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-separators2.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-space.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home2.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home3.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-named.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix2.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix3.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/plain-file-in-command-position.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing1.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing2.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-then-assignment.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type1.zsh +61 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type2.zsh +55 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type3.zsh +55 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-uninstalled.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-unknown-option.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand2.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand3.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand4.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/prefix-redirection.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-after-redirection.zsh +46 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-redirection-isnt-globbing.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution2.zsh +51 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/quoted-command-substitution-empty.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/quoted-redirection-in-command-word.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/rc-quotes.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-all.zsh +95 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-comment.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-from-param.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-in-cmdsubst.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-inhibits-elision.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-is-not-option.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-special-cases.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection2.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection3.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/reserved-word.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/simple-command.zsh +34 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/simple-redirection.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/subshell.zsh +51 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-command.zsh +54 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-comment.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-longopt.zsh +38 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection.zsh +48 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection2.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection3.zsh +41 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/tilde-command-word.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect1.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect2.zsh +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/unbackslash.zsh +34 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/unknown-command.zsh +34 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/vanilla-newline.zsh +39 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/vi-linewise-mode.zsh +43 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/pattern/pattern-highlighter.zsh +60 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/pattern/test-data/rm-rf.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/regexp-highlighter.zsh +62 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/complex.zsh +37 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/subexpression.zsh +36 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/word-boundary.zsh +42 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/root/root-highlighter.zsh +44 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after1-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after1.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after2-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after2.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after3-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after3.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after4-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before1-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before1.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before2-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before2.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before3-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before3.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before4-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/preview-smaller.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/images/preview.png +0 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/release.md +21 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/README.md +124 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/edit-failed-tests +40 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/generate.zsh +117 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/tap-colorizer.zsh +71 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/tap-filter +47 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-highlighting.zsh +291 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-perfs.zsh +103 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-zprof.zsh +78 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh +2 -0
- package/runtime/vendor/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +587 -0
- package/runtime/versions.env +19 -0
|
@@ -0,0 +1,1174 @@
|
|
|
1
|
+
typeset -gA icons
|
|
2
|
+
|
|
3
|
+
function _p9k_init_icons() {
|
|
4
|
+
[[ -n ${POWERLEVEL9K_MODE-} || ${langinfo[CODESET]} == (utf|UTF)(-|)8 ]] || local POWERLEVEL9K_MODE=ascii
|
|
5
|
+
[[ $_p9k__icon_mode == $POWERLEVEL9K_MODE/$POWERLEVEL9K_LEGACY_ICON_SPACING/$POWERLEVEL9K_ICON_PADDING ]] && return
|
|
6
|
+
typeset -g _p9k__icon_mode=$POWERLEVEL9K_MODE/$POWERLEVEL9K_LEGACY_ICON_SPACING/$POWERLEVEL9K_ICON_PADDING
|
|
7
|
+
|
|
8
|
+
if [[ $POWERLEVEL9K_LEGACY_ICON_SPACING == true ]]; then
|
|
9
|
+
local s=
|
|
10
|
+
local q=' '
|
|
11
|
+
else
|
|
12
|
+
local s=' '
|
|
13
|
+
local q=
|
|
14
|
+
fi
|
|
15
|
+
|
|
16
|
+
case $POWERLEVEL9K_MODE in
|
|
17
|
+
'flat'|'awesome-patched')
|
|
18
|
+
# Awesome-Patched Font required! See:
|
|
19
|
+
# https://github.com/gabrielelana/awesome-terminal-fonts/tree/patching-strategy/patched
|
|
20
|
+
icons=(
|
|
21
|
+
RULER_CHAR '\u2500' # ─
|
|
22
|
+
LEFT_SEGMENT_SEPARATOR '\uE0B0' #
|
|
23
|
+
RIGHT_SEGMENT_SEPARATOR '\uE0B2' #
|
|
24
|
+
LEFT_SEGMENT_END_SEPARATOR ' ' # Whitespace
|
|
25
|
+
LEFT_SUBSEGMENT_SEPARATOR '\uE0B1' #
|
|
26
|
+
RIGHT_SUBSEGMENT_SEPARATOR '\uE0B3' #
|
|
27
|
+
CARRIAGE_RETURN_ICON '\u21B5'$s # ↵
|
|
28
|
+
ROOT_ICON '\uE801' #
|
|
29
|
+
SUDO_ICON '\uE0A2' #
|
|
30
|
+
RUBY_ICON '\uE847 ' #
|
|
31
|
+
AWS_ICON '\uE895'$s #
|
|
32
|
+
AWS_EB_ICON '\U1F331'$q # 🌱
|
|
33
|
+
BACKGROUND_JOBS_ICON '\uE82F ' #
|
|
34
|
+
TEST_ICON '\uE891'$s #
|
|
35
|
+
TODO_ICON '\u2611' # ☑
|
|
36
|
+
BATTERY_ICON '\uE894'$s #
|
|
37
|
+
DISK_ICON '\uE1AE ' #
|
|
38
|
+
OK_ICON '\u2714' # ✔
|
|
39
|
+
FAIL_ICON '\u2718' # ✘
|
|
40
|
+
SYMFONY_ICON 'SF'
|
|
41
|
+
NODE_ICON '\u2B22'$s # ⬢
|
|
42
|
+
NODEJS_ICON '\u2B22'$s # ⬢
|
|
43
|
+
MULTILINE_FIRST_PROMPT_PREFIX '\u256D\U2500' # ╭─
|
|
44
|
+
MULTILINE_NEWLINE_PROMPT_PREFIX '\u251C\U2500' # ├─
|
|
45
|
+
MULTILINE_LAST_PROMPT_PREFIX '\u2570\U2500 ' # ╰─
|
|
46
|
+
APPLE_ICON '\uE26E'$s #
|
|
47
|
+
WINDOWS_ICON '\uE26F'$s #
|
|
48
|
+
FREEBSD_ICON '\U1F608'$q # 😈
|
|
49
|
+
ANDROID_ICON '\uE270'$s #
|
|
50
|
+
LINUX_ICON '\uE271'$s #
|
|
51
|
+
LINUX_ARCH_ICON '\uE271'$s #
|
|
52
|
+
LINUX_DEBIAN_ICON '\uE271'$s #
|
|
53
|
+
LINUX_RASPBIAN_ICON '\uE271'$s #
|
|
54
|
+
LINUX_UBUNTU_ICON '\uE271'$s #
|
|
55
|
+
LINUX_KALI_ICON '\uE271'$s #
|
|
56
|
+
LINUX_CENTOS_ICON '\uE271'$s #
|
|
57
|
+
LINUX_COREOS_ICON '\uE271'$s #
|
|
58
|
+
LINUX_ELEMENTARY_ICON '\uE271'$s #
|
|
59
|
+
LINUX_MINT_ICON '\uE271'$s #
|
|
60
|
+
LINUX_FEDORA_ICON '\uE271'$s #
|
|
61
|
+
LINUX_GENTOO_ICON '\uE271'$s #
|
|
62
|
+
LINUX_MAGEIA_ICON '\uE271'$s #
|
|
63
|
+
LINUX_NIXOS_ICON '\uE271'$s #
|
|
64
|
+
LINUX_MANJARO_ICON '\uE271'$s #
|
|
65
|
+
LINUX_DEVUAN_ICON '\uE271'$s #
|
|
66
|
+
LINUX_ALPINE_ICON '\uE271'$s #
|
|
67
|
+
LINUX_AOSC_ICON '\uE271'$s #
|
|
68
|
+
LINUX_OPENSUSE_ICON '\uE271'$s #
|
|
69
|
+
LINUX_SABAYON_ICON '\uE271'$s #
|
|
70
|
+
LINUX_SLACKWARE_ICON '\uE271'$s #
|
|
71
|
+
LINUX_VOID_ICON '\uE271'$s #
|
|
72
|
+
LINUX_ARTIX_ICON '\uE271'$s #
|
|
73
|
+
LINUX_RHEL_ICON '\uE271'$s #
|
|
74
|
+
LINUX_AMZN_ICON '\uE271'$s #
|
|
75
|
+
LINUX_ENDEAVOUROS_ICON '\uE271'$s #
|
|
76
|
+
LINUX_ROCKY_ICON '\uE271'$s #
|
|
77
|
+
LINUX_ALMALINUX_ICON '\uE271'$s #
|
|
78
|
+
LINUX_GUIX_ICON '\uE271'$s #
|
|
79
|
+
LINUX_NEON_ICON '\uE271'$s #
|
|
80
|
+
SUNOS_ICON '\U1F31E'$q # 🌞
|
|
81
|
+
HOME_ICON '\uE12C'$s #
|
|
82
|
+
HOME_SUB_ICON '\uE18D'$s #
|
|
83
|
+
FOLDER_ICON '\uE818'$s #
|
|
84
|
+
NETWORK_ICON '\uE1AD'$s #
|
|
85
|
+
ETC_ICON '\uE82F'$s #
|
|
86
|
+
LOAD_ICON '\uE190 ' #
|
|
87
|
+
SWAP_ICON '\uE87D'$s #
|
|
88
|
+
RAM_ICON '\uE1E2 ' #
|
|
89
|
+
SERVER_ICON '\uE895'$s #
|
|
90
|
+
VCS_UNTRACKED_ICON '\uE16C'$s #
|
|
91
|
+
VCS_UNSTAGED_ICON '\uE17C'$s #
|
|
92
|
+
VCS_STAGED_ICON '\uE168'$s #
|
|
93
|
+
VCS_STASH_ICON '\uE133 ' #
|
|
94
|
+
#VCS_INCOMING_CHANGES_ICON '\uE1EB ' #
|
|
95
|
+
#VCS_INCOMING_CHANGES_ICON '\uE80D ' #
|
|
96
|
+
VCS_INCOMING_CHANGES_ICON '\uE131 ' #
|
|
97
|
+
#VCS_OUTGOING_CHANGES_ICON '\uE1EC ' #
|
|
98
|
+
#VCS_OUTGOING_CHANGES_ICON '\uE80E ' #
|
|
99
|
+
VCS_OUTGOING_CHANGES_ICON '\uE132 ' #
|
|
100
|
+
VCS_TAG_ICON '\uE817 ' #
|
|
101
|
+
VCS_BOOKMARK_ICON '\uE87B' #
|
|
102
|
+
VCS_COMMIT_ICON '\uE821 ' #
|
|
103
|
+
VCS_BRANCH_ICON '\uE220 ' #
|
|
104
|
+
VCS_REMOTE_BRANCH_ICON '\u2192' # →
|
|
105
|
+
VCS_LOADING_ICON ''
|
|
106
|
+
VCS_GIT_ICON '\uE20E ' #
|
|
107
|
+
VCS_GIT_GITHUB_ICON '\uE20E ' #
|
|
108
|
+
VCS_GIT_BITBUCKET_ICON '\uE20E ' #
|
|
109
|
+
VCS_GIT_GITLAB_ICON '\uE20E ' #
|
|
110
|
+
VCS_GIT_AZURE_ICON '\uE20E ' #
|
|
111
|
+
VCS_GIT_ARCHLINUX_ICON '\uE20E ' #
|
|
112
|
+
VCS_GIT_CODEBERG_ICON '\uE20E ' #
|
|
113
|
+
VCS_GIT_DEBIAN_ICON '\uE20E ' #
|
|
114
|
+
VCS_GIT_FREEBSD_ICON '\uE20E ' #
|
|
115
|
+
VCS_GIT_FREEDESKTOP_ICON '\uE20E ' #
|
|
116
|
+
VCS_GIT_GNOME_ICON '\uE20E ' #
|
|
117
|
+
VCS_GIT_GNU_ICON '\uE20E ' #
|
|
118
|
+
VCS_GIT_KDE_ICON '\uE20E ' #
|
|
119
|
+
VCS_GIT_LINUX_ICON '\uE20E ' #
|
|
120
|
+
VCS_GIT_GITEA_ICON '\uE20E ' #
|
|
121
|
+
VCS_GIT_SOURCEHUT_ICON '\uE20E ' #
|
|
122
|
+
VCS_HG_ICON '\uE1C3 ' #
|
|
123
|
+
VCS_SVN_ICON 'svn'$q
|
|
124
|
+
RUST_ICON 'R'
|
|
125
|
+
PYTHON_ICON '\uE63C'$s # (doesn't always work)
|
|
126
|
+
CHEZMOI_ICON '\uE12C'$s #
|
|
127
|
+
SWIFT_ICON 'Swift'
|
|
128
|
+
GO_ICON 'Go'
|
|
129
|
+
GOLANG_ICON 'Go'
|
|
130
|
+
PUBLIC_IP_ICON 'IP'
|
|
131
|
+
LOCK_ICON '\UE138' #
|
|
132
|
+
NORDVPN_ICON '\UE138' #
|
|
133
|
+
EXECUTION_TIME_ICON '\UE89C'$s #
|
|
134
|
+
SSH_ICON 'ssh'
|
|
135
|
+
VPN_ICON '\UE138'
|
|
136
|
+
KUBERNETES_ICON '\U2388'$s # ⎈
|
|
137
|
+
DROPBOX_ICON '\UF16B'$s # (doesn't always work)
|
|
138
|
+
DATE_ICON '\uE184'$s #
|
|
139
|
+
TIME_ICON '\uE12E'$s #
|
|
140
|
+
JAVA_ICON '\U2615' # ☕︎
|
|
141
|
+
LARAVEL_ICON ''
|
|
142
|
+
RANGER_ICON '\u2B50' # ⭐
|
|
143
|
+
YAZI_ICON '\u2B50' # ⭐
|
|
144
|
+
MIDNIGHT_COMMANDER_ICON 'mc'
|
|
145
|
+
VIM_ICON 'vim'
|
|
146
|
+
TERRAFORM_ICON 'tf'
|
|
147
|
+
PROXY_ICON '\u2194' # ↔
|
|
148
|
+
DOTNET_ICON '.NET'
|
|
149
|
+
DOTNET_CORE_ICON '.NET'
|
|
150
|
+
AZURE_ICON '\u2601' # ☁
|
|
151
|
+
DIRENV_ICON '\u25BC' # ▼
|
|
152
|
+
FLUTTER_ICON 'F'
|
|
153
|
+
GCLOUD_ICON 'G'
|
|
154
|
+
LUA_ICON 'lua'
|
|
155
|
+
PERL_ICON 'perl'
|
|
156
|
+
NNN_ICON 'nnn'
|
|
157
|
+
LF_ICON 'lf'
|
|
158
|
+
XPLR_ICON 'xplr'
|
|
159
|
+
TIMEWARRIOR_ICON 'tw'
|
|
160
|
+
TASKWARRIOR_ICON 'task'
|
|
161
|
+
NIX_SHELL_ICON 'nix'
|
|
162
|
+
WIFI_ICON 'WiFi'
|
|
163
|
+
ERLANG_ICON 'erl'
|
|
164
|
+
ELIXIR_ICON 'elixir'
|
|
165
|
+
POSTGRES_ICON 'postgres'
|
|
166
|
+
PHP_ICON 'php'
|
|
167
|
+
HASKELL_ICON 'hs'
|
|
168
|
+
PACKAGE_ICON 'pkg'
|
|
169
|
+
JULIA_ICON 'jl'
|
|
170
|
+
SCALA_ICON 'scala'
|
|
171
|
+
TOOLBOX_ICON '\u2B22' # ⬢
|
|
172
|
+
ARCH_ICON 'arch'
|
|
173
|
+
HISTORY_ICON 'hist'
|
|
174
|
+
)
|
|
175
|
+
;;
|
|
176
|
+
'awesome-fontconfig')
|
|
177
|
+
# fontconfig with awesome-font required! See
|
|
178
|
+
# https://github.com/gabrielelana/awesome-terminal-fonts
|
|
179
|
+
icons=(
|
|
180
|
+
RULER_CHAR '\u2500' # ─
|
|
181
|
+
LEFT_SEGMENT_SEPARATOR '\uE0B0' #
|
|
182
|
+
RIGHT_SEGMENT_SEPARATOR '\uE0B2' #
|
|
183
|
+
LEFT_SEGMENT_END_SEPARATOR ' ' # Whitespace
|
|
184
|
+
LEFT_SUBSEGMENT_SEPARATOR '\uE0B1' #
|
|
185
|
+
RIGHT_SUBSEGMENT_SEPARATOR '\uE0B3' #
|
|
186
|
+
CARRIAGE_RETURN_ICON '\u21B5' # ↵
|
|
187
|
+
ROOT_ICON '\uF201'$s #
|
|
188
|
+
SUDO_ICON '\uF09C'$s #
|
|
189
|
+
RUBY_ICON '\uF219 ' #
|
|
190
|
+
AWS_ICON '\uF270'$s #
|
|
191
|
+
AWS_EB_ICON '\U1F331'$q # 🌱
|
|
192
|
+
BACKGROUND_JOBS_ICON '\uF013 ' #
|
|
193
|
+
TEST_ICON '\uF291'$s #
|
|
194
|
+
TODO_ICON '\u2611' # ☑
|
|
195
|
+
BATTERY_ICON '\U1F50B' # 🔋
|
|
196
|
+
DISK_ICON '\uF0A0 ' #
|
|
197
|
+
OK_ICON '\u2714' # ✔
|
|
198
|
+
FAIL_ICON '\u2718' # ✘
|
|
199
|
+
SYMFONY_ICON 'SF'
|
|
200
|
+
NODE_ICON '\u2B22' # ⬢
|
|
201
|
+
NODEJS_ICON '\u2B22' # ⬢
|
|
202
|
+
MULTILINE_FIRST_PROMPT_PREFIX '\u256D\U2500' # ╭─
|
|
203
|
+
MULTILINE_NEWLINE_PROMPT_PREFIX '\u251C\U2500' # ├─
|
|
204
|
+
MULTILINE_LAST_PROMPT_PREFIX '\u2570\U2500 ' # ╰─
|
|
205
|
+
APPLE_ICON '\uF179'$s #
|
|
206
|
+
WINDOWS_ICON '\uF17A'$s #
|
|
207
|
+
FREEBSD_ICON '\U1F608'$q # 😈
|
|
208
|
+
ANDROID_ICON '\uE17B'$s # (doesn't always work)
|
|
209
|
+
LINUX_ICON '\uF17C'$s #
|
|
210
|
+
LINUX_ARCH_ICON '\uF17C'$s #
|
|
211
|
+
LINUX_DEBIAN_ICON '\uF17C'$s #
|
|
212
|
+
LINUX_RASPBIAN_ICON '\uF17C'$s #
|
|
213
|
+
LINUX_UBUNTU_ICON '\uF17C'$s #
|
|
214
|
+
LINUX_KALI_ICON '\uF17C'$s #
|
|
215
|
+
LINUX_CENTOS_ICON '\uF17C'$s #
|
|
216
|
+
LINUX_COREOS_ICON '\uF17C'$s #
|
|
217
|
+
LINUX_ELEMENTARY_ICON '\uF17C'$s #
|
|
218
|
+
LINUX_MINT_ICON '\uF17C'$s #
|
|
219
|
+
LINUX_FEDORA_ICON '\uF17C'$s #
|
|
220
|
+
LINUX_GENTOO_ICON '\uF17C'$s #
|
|
221
|
+
LINUX_MAGEIA_ICON '\uF17C'$s #
|
|
222
|
+
LINUX_NIXOS_ICON '\uF17C'$s #
|
|
223
|
+
LINUX_MANJARO_ICON '\uF17C'$s #
|
|
224
|
+
LINUX_DEVUAN_ICON '\uF17C'$s #
|
|
225
|
+
LINUX_ALPINE_ICON '\uF17C'$s #
|
|
226
|
+
LINUX_AOSC_ICON '\uF17C'$s #
|
|
227
|
+
LINUX_OPENSUSE_ICON '\uF17C'$s #
|
|
228
|
+
LINUX_SABAYON_ICON '\uF17C'$s #
|
|
229
|
+
LINUX_SLACKWARE_ICON '\uF17C'$s #
|
|
230
|
+
LINUX_VOID_ICON '\uF17C'$s #
|
|
231
|
+
LINUX_ARTIX_ICON '\uF17C'$s #
|
|
232
|
+
LINUX_RHEL_ICON '\uF17C'$s #
|
|
233
|
+
LINUX_AMZN_ICON '\uF17C'$s #
|
|
234
|
+
LINUX_ENDEAVOUROS_ICON '\uF17C'$s #
|
|
235
|
+
LINUX_ROCKY_ICON '\uF17C'$s #
|
|
236
|
+
LINUX_ALMALINUX_ICON '\uF17C'$s #
|
|
237
|
+
LINUX_GUIX_ICON '\uF17C'$s #
|
|
238
|
+
LINUX_NEON_ICON '\uF17C'$s #
|
|
239
|
+
SUNOS_ICON '\uF185 ' #
|
|
240
|
+
HOME_ICON '\uF015'$s #
|
|
241
|
+
HOME_SUB_ICON '\uF07C'$s #
|
|
242
|
+
FOLDER_ICON '\uF115'$s #
|
|
243
|
+
ETC_ICON '\uF013 ' #
|
|
244
|
+
NETWORK_ICON '\uF09E'$s #
|
|
245
|
+
LOAD_ICON '\uF080 ' #
|
|
246
|
+
SWAP_ICON '\uF0E4'$s #
|
|
247
|
+
RAM_ICON '\uF0E4'$s #
|
|
248
|
+
SERVER_ICON '\uF233'$s #
|
|
249
|
+
VCS_UNTRACKED_ICON '\uF059'$s #
|
|
250
|
+
VCS_UNSTAGED_ICON '\uF06A'$s #
|
|
251
|
+
VCS_STAGED_ICON '\uF055'$s #
|
|
252
|
+
VCS_STASH_ICON '\uF01C ' #
|
|
253
|
+
VCS_INCOMING_CHANGES_ICON '\uF01A ' #
|
|
254
|
+
VCS_OUTGOING_CHANGES_ICON '\uF01B ' #
|
|
255
|
+
VCS_TAG_ICON '\uF217 ' #
|
|
256
|
+
VCS_BOOKMARK_ICON '\uF27B ' #
|
|
257
|
+
VCS_COMMIT_ICON '\uF221 ' #
|
|
258
|
+
VCS_BRANCH_ICON '\uF126 ' #
|
|
259
|
+
VCS_REMOTE_BRANCH_ICON '\u2192' # →
|
|
260
|
+
VCS_LOADING_ICON ''
|
|
261
|
+
VCS_GIT_ICON '\uF1D3 ' #
|
|
262
|
+
VCS_GIT_GITHUB_ICON '\uF113 ' #
|
|
263
|
+
VCS_GIT_BITBUCKET_ICON '\uF171 ' #
|
|
264
|
+
VCS_GIT_GITLAB_ICON '\uF296 ' #
|
|
265
|
+
VCS_GIT_AZURE_ICON '\u2601 ' # ☁
|
|
266
|
+
VCS_GIT_ARCHLINUX_ICON '\uF1D3 ' #
|
|
267
|
+
VCS_GIT_CODEBERG_ICON '\uF1D3 ' #
|
|
268
|
+
VCS_GIT_DEBIAN_ICON '\uF1D3 ' #
|
|
269
|
+
VCS_GIT_FREEBSD_ICON '\uF1D3 ' #
|
|
270
|
+
VCS_GIT_FREEDESKTOP_ICON '\uF1D3 ' #
|
|
271
|
+
VCS_GIT_GNOME_ICON '\uF1D3 ' #
|
|
272
|
+
VCS_GIT_GNU_ICON '\uF1D3 ' #
|
|
273
|
+
VCS_GIT_KDE_ICON '\uF1D3 ' #
|
|
274
|
+
VCS_GIT_LINUX_ICON '\uF1D3 ' #
|
|
275
|
+
VCS_GIT_GITEA_ICON '\uF1D3 ' #
|
|
276
|
+
VCS_GIT_SOURCEHUT_ICON '\uF1D3 ' #
|
|
277
|
+
VCS_HG_ICON '\uF0C3 ' #
|
|
278
|
+
VCS_SVN_ICON 'svn'$q
|
|
279
|
+
RUST_ICON '\uE6A8' #
|
|
280
|
+
PYTHON_ICON '\uE63C'$s #
|
|
281
|
+
CHEZMOI_ICON '\uF015'$s #
|
|
282
|
+
SWIFT_ICON 'Swift'
|
|
283
|
+
GO_ICON 'Go'
|
|
284
|
+
GOLANG_ICON 'Go'
|
|
285
|
+
PUBLIC_IP_ICON 'IP'
|
|
286
|
+
LOCK_ICON '\UF023' #
|
|
287
|
+
NORDVPN_ICON '\UF023' #
|
|
288
|
+
EXECUTION_TIME_ICON '\uF253'$s #
|
|
289
|
+
SSH_ICON 'ssh'
|
|
290
|
+
VPN_ICON '\uF023'
|
|
291
|
+
KUBERNETES_ICON '\U2388' # ⎈
|
|
292
|
+
DROPBOX_ICON '\UF16B'$s #
|
|
293
|
+
DATE_ICON '\uF073 ' #
|
|
294
|
+
TIME_ICON '\uF017 ' #
|
|
295
|
+
JAVA_ICON '\U2615' # ☕︎
|
|
296
|
+
LARAVEL_ICON ''
|
|
297
|
+
RANGER_ICON '\u2B50' # ⭐
|
|
298
|
+
YAZI_ICON '\u2B50' # ⭐
|
|
299
|
+
MIDNIGHT_COMMANDER_ICON 'mc'
|
|
300
|
+
VIM_ICON 'vim'
|
|
301
|
+
TERRAFORM_ICON 'tf'
|
|
302
|
+
PROXY_ICON '\u2194' # ↔
|
|
303
|
+
DOTNET_ICON '.NET'
|
|
304
|
+
DOTNET_CORE_ICON '.NET'
|
|
305
|
+
AZURE_ICON '\u2601' # ☁
|
|
306
|
+
DIRENV_ICON '\u25BC' # ▼
|
|
307
|
+
FLUTTER_ICON 'F'
|
|
308
|
+
GCLOUD_ICON 'G'
|
|
309
|
+
LUA_ICON 'lua'
|
|
310
|
+
PERL_ICON 'perl'
|
|
311
|
+
NNN_ICON 'nnn'
|
|
312
|
+
LF_ICON 'lf'
|
|
313
|
+
XPLR_ICON 'xplr'
|
|
314
|
+
TIMEWARRIOR_ICON 'tw'
|
|
315
|
+
TASKWARRIOR_ICON 'task'
|
|
316
|
+
NIX_SHELL_ICON 'nix'
|
|
317
|
+
WIFI_ICON 'WiFi'
|
|
318
|
+
ERLANG_ICON 'erl'
|
|
319
|
+
ELIXIR_ICON 'elixir'
|
|
320
|
+
POSTGRES_ICON 'postgres'
|
|
321
|
+
PHP_ICON 'php'
|
|
322
|
+
HASKELL_ICON 'hs'
|
|
323
|
+
PACKAGE_ICON 'pkg'
|
|
324
|
+
JULIA_ICON 'jl'
|
|
325
|
+
SCALA_ICON 'scala'
|
|
326
|
+
TOOLBOX_ICON '\u2B22' # ⬢
|
|
327
|
+
ARCH_ICON 'arch'
|
|
328
|
+
HISTORY_ICON 'hist'
|
|
329
|
+
)
|
|
330
|
+
;;
|
|
331
|
+
'awesome-mapped-fontconfig')
|
|
332
|
+
# mapped fontconfig with awesome-font required! See
|
|
333
|
+
# https://github.com/gabrielelana/awesome-terminal-fonts
|
|
334
|
+
# don't forget to source the font maps in your startup script
|
|
335
|
+
if [ -z "$AWESOME_GLYPHS_LOADED" ]; then
|
|
336
|
+
echo "Powerlevel9k warning: Awesome-Font mappings have not been loaded.
|
|
337
|
+
Source a font mapping in your shell config, per the Awesome-Font docs
|
|
338
|
+
(https://github.com/gabrielelana/awesome-terminal-fonts),
|
|
339
|
+
Or use a different Powerlevel9k font configuration.";
|
|
340
|
+
fi
|
|
341
|
+
icons=(
|
|
342
|
+
RULER_CHAR '\u2500' # ─
|
|
343
|
+
LEFT_SEGMENT_SEPARATOR '\uE0B0' #
|
|
344
|
+
RIGHT_SEGMENT_SEPARATOR '\uE0B2' #
|
|
345
|
+
LEFT_SEGMENT_END_SEPARATOR ' ' # Whitespace
|
|
346
|
+
LEFT_SUBSEGMENT_SEPARATOR '\uE0B1' #
|
|
347
|
+
RIGHT_SUBSEGMENT_SEPARATOR '\uE0B3' #
|
|
348
|
+
CARRIAGE_RETURN_ICON '\u21B5' # ↵
|
|
349
|
+
ROOT_ICON "${CODEPOINT_OF_OCTICONS_ZAP:+\\u$CODEPOINT_OF_OCTICONS_ZAP}"
|
|
350
|
+
SUDO_ICON "${CODEPOINT_OF_AWESOME_UNLOCK:+\\u$CODEPOINT_OF_AWESOME_UNLOCK$s}"
|
|
351
|
+
RUBY_ICON "${CODEPOINT_OF_OCTICONS_RUBY:+\\u$CODEPOINT_OF_OCTICONS_RUBY }"
|
|
352
|
+
AWS_ICON "${CODEPOINT_OF_AWESOME_SERVER:+\\u$CODEPOINT_OF_AWESOME_SERVER$s}"
|
|
353
|
+
AWS_EB_ICON '\U1F331'$q # 🌱
|
|
354
|
+
BACKGROUND_JOBS_ICON "${CODEPOINT_OF_AWESOME_COG:+\\u$CODEPOINT_OF_AWESOME_COG }"
|
|
355
|
+
TEST_ICON "${CODEPOINT_OF_AWESOME_BUG:+\\u$CODEPOINT_OF_AWESOME_BUG$s}"
|
|
356
|
+
TODO_ICON "${CODEPOINT_OF_AWESOME_CHECK_SQUARE_O:+\\u$CODEPOINT_OF_AWESOME_CHECK_SQUARE_O$s}"
|
|
357
|
+
BATTERY_ICON "${CODEPOINT_OF_AWESOME_BATTERY_FULL:+\\U$CODEPOINT_OF_AWESOME_BATTERY_FULL$s}"
|
|
358
|
+
DISK_ICON "${CODEPOINT_OF_AWESOME_HDD_O:+\\u$CODEPOINT_OF_AWESOME_HDD_O }"
|
|
359
|
+
OK_ICON "${CODEPOINT_OF_AWESOME_CHECK:+\\u$CODEPOINT_OF_AWESOME_CHECK$s}"
|
|
360
|
+
FAIL_ICON "${CODEPOINT_OF_AWESOME_TIMES:+\\u$CODEPOINT_OF_AWESOME_TIMES}"
|
|
361
|
+
SYMFONY_ICON 'SF'
|
|
362
|
+
NODE_ICON '\u2B22' # ⬢
|
|
363
|
+
NODEJS_ICON '\u2B22' # ⬢
|
|
364
|
+
MULTILINE_FIRST_PROMPT_PREFIX '\u256D\U2500' # ╭─
|
|
365
|
+
MULTILINE_NEWLINE_PROMPT_PREFIX '\u251C\U2500' # ├─
|
|
366
|
+
MULTILINE_LAST_PROMPT_PREFIX '\u2570\U2500 ' # ╰─
|
|
367
|
+
APPLE_ICON "${CODEPOINT_OF_AWESOME_APPLE:+\\u$CODEPOINT_OF_AWESOME_APPLE$s}"
|
|
368
|
+
FREEBSD_ICON '\U1F608'$q # 😈
|
|
369
|
+
LINUX_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
370
|
+
LINUX_ARCH_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
371
|
+
LINUX_DEBIAN_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
372
|
+
LINUX_RASPBIAN_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
373
|
+
LINUX_UBUNTU_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
374
|
+
LINUX_KALI_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
375
|
+
LINUX_CENTOS_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
376
|
+
LINUX_COREOS_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
377
|
+
LINUX_ELEMENTARY_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
378
|
+
LINUX_MINT_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
379
|
+
LINUX_FEDORA_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
380
|
+
LINUX_GENTOO_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
381
|
+
LINUX_MAGEIA_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
382
|
+
LINUX_NIXOS_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
383
|
+
LINUX_MANJARO_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
384
|
+
LINUX_DEVUAN_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
385
|
+
LINUX_ALPINE_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
386
|
+
LINUX_AOSC_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
387
|
+
LINUX_OPENSUSE_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
388
|
+
LINUX_SABAYON_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
389
|
+
LINUX_SLACKWARE_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
390
|
+
LINUX_VOID_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
391
|
+
LINUX_ARTIX_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
392
|
+
LINUX_RHEL_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
393
|
+
LINUX_AMZN_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
394
|
+
LINUX_ENDEAVOUROS_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
395
|
+
LINUX_ROCKY_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
396
|
+
LINUX_ALMALINUX_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
397
|
+
LINUX_GUIX_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
398
|
+
LINUX_NEON_ICON "${CODEPOINT_OF_AWESOME_LINUX:+\\u$CODEPOINT_OF_AWESOME_LINUX$s}"
|
|
399
|
+
SUNOS_ICON "${CODEPOINT_OF_AWESOME_SUN_O:+\\u$CODEPOINT_OF_AWESOME_SUN_O }"
|
|
400
|
+
HOME_ICON "${CODEPOINT_OF_AWESOME_HOME:+\\u$CODEPOINT_OF_AWESOME_HOME$s}"
|
|
401
|
+
HOME_SUB_ICON "${CODEPOINT_OF_AWESOME_FOLDER_OPEN:+\\u$CODEPOINT_OF_AWESOME_FOLDER_OPEN$s}"
|
|
402
|
+
FOLDER_ICON "${CODEPOINT_OF_AWESOME_FOLDER_O:+\\u$CODEPOINT_OF_AWESOME_FOLDER_O$s}"
|
|
403
|
+
ETC_ICON "${CODEPOINT_OF_AWESOME_COG:+\\u$CODEPOINT_OF_AWESOME_COG }"
|
|
404
|
+
NETWORK_ICON "${CODEPOINT_OF_AWESOME_RSS:+\\u$CODEPOINT_OF_AWESOME_RSS$s}"
|
|
405
|
+
LOAD_ICON "${CODEPOINT_OF_AWESOME_BAR_CHART:+\\u$CODEPOINT_OF_AWESOME_BAR_CHART }"
|
|
406
|
+
SWAP_ICON "${CODEPOINT_OF_AWESOME_DASHBOARD:+\\u$CODEPOINT_OF_AWESOME_DASHBOARD$s}"
|
|
407
|
+
RAM_ICON "${CODEPOINT_OF_AWESOME_DASHBOARD:+\\u$CODEPOINT_OF_AWESOME_DASHBOARD$s}"
|
|
408
|
+
SERVER_ICON "${CODEPOINT_OF_AWESOME_SERVER:+\\u$CODEPOINT_OF_AWESOME_SERVER$s}"
|
|
409
|
+
VCS_UNTRACKED_ICON "${CODEPOINT_OF_AWESOME_QUESTION_CIRCLE:+\\u$CODEPOINT_OF_AWESOME_QUESTION_CIRCLE$s}"
|
|
410
|
+
VCS_UNSTAGED_ICON "${CODEPOINT_OF_AWESOME_EXCLAMATION_CIRCLE:+\\u$CODEPOINT_OF_AWESOME_EXCLAMATION_CIRCLE$s}"
|
|
411
|
+
VCS_STAGED_ICON "${CODEPOINT_OF_AWESOME_PLUS_CIRCLE:+\\u$CODEPOINT_OF_AWESOME_PLUS_CIRCLE$s}"
|
|
412
|
+
VCS_STASH_ICON "${CODEPOINT_OF_AWESOME_INBOX:+\\u$CODEPOINT_OF_AWESOME_INBOX }"
|
|
413
|
+
VCS_INCOMING_CHANGES_ICON "${CODEPOINT_OF_AWESOME_ARROW_CIRCLE_DOWN:+\\u$CODEPOINT_OF_AWESOME_ARROW_CIRCLE_DOWN }"
|
|
414
|
+
VCS_OUTGOING_CHANGES_ICON "${CODEPOINT_OF_AWESOME_ARROW_CIRCLE_UP:+\\u$CODEPOINT_OF_AWESOME_ARROW_CIRCLE_UP }"
|
|
415
|
+
VCS_TAG_ICON "${CODEPOINT_OF_AWESOME_TAG:+\\u$CODEPOINT_OF_AWESOME_TAG }"
|
|
416
|
+
VCS_BOOKMARK_ICON "${CODEPOINT_OF_OCTICONS_BOOKMARK:+\\u$CODEPOINT_OF_OCTICONS_BOOKMARK}"
|
|
417
|
+
VCS_COMMIT_ICON "${CODEPOINT_OF_OCTICONS_GIT_COMMIT:+\\u$CODEPOINT_OF_OCTICONS_GIT_COMMIT }"
|
|
418
|
+
VCS_BRANCH_ICON "${CODEPOINT_OF_OCTICONS_GIT_BRANCH:+\\u$CODEPOINT_OF_OCTICONS_GIT_BRANCH }"
|
|
419
|
+
VCS_REMOTE_BRANCH_ICON "${CODEPOINT_OF_OCTICONS_REPO_PUSH:+\\u$CODEPOINT_OF_OCTICONS_REPO_PUSH$s}"
|
|
420
|
+
VCS_LOADING_ICON ''
|
|
421
|
+
VCS_GIT_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
422
|
+
VCS_GIT_GITHUB_ICON "${CODEPOINT_OF_AWESOME_GITHUB_ALT:+\\u$CODEPOINT_OF_AWESOME_GITHUB_ALT }"
|
|
423
|
+
VCS_GIT_BITBUCKET_ICON "${CODEPOINT_OF_AWESOME_BITBUCKET:+\\u$CODEPOINT_OF_AWESOME_BITBUCKET }"
|
|
424
|
+
VCS_GIT_GITLAB_ICON "${CODEPOINT_OF_AWESOME_GITLAB:+\\u$CODEPOINT_OF_AWESOME_GITLAB }"
|
|
425
|
+
VCS_GIT_AZURE_ICON '\u2601 ' # ☁
|
|
426
|
+
VCS_GIT_ARCHLINUX_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
427
|
+
VCS_GIT_CODEBERG_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
428
|
+
VCS_GIT_DEBIAN_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
429
|
+
VCS_GIT_FREEBSD_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
430
|
+
VCS_GIT_FREEDESKTOP_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
431
|
+
VCS_GIT_GNOME_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
432
|
+
VCS_GIT_GNU_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
433
|
+
VCS_GIT_KDE_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
434
|
+
VCS_GIT_LINUX_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
435
|
+
VCS_GIT_GITEA_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
436
|
+
VCS_GIT_SOURCEHUT_ICON "${CODEPOINT_OF_AWESOME_GIT:+\\u$CODEPOINT_OF_AWESOME_GIT }"
|
|
437
|
+
VCS_HG_ICON "${CODEPOINT_OF_AWESOME_FLASK:+\\u$CODEPOINT_OF_AWESOME_FLASK }"
|
|
438
|
+
VCS_SVN_ICON 'svn'$q
|
|
439
|
+
RUST_ICON '\uE6A8' #
|
|
440
|
+
PYTHON_ICON '\U1F40D' # 🐍
|
|
441
|
+
CHEZMOI_ICON "${CODEPOINT_OF_AWESOME_HOME:+\\u$CODEPOINT_OF_AWESOME_HOME$s}"
|
|
442
|
+
SWIFT_ICON '\uE655'$s #
|
|
443
|
+
PUBLIC_IP_ICON "${CODEPOINT_OF_AWESOME_GLOBE:+\\u$CODEPOINT_OF_AWESOME_GLOBE$s}"
|
|
444
|
+
LOCK_ICON "${CODEPOINT_OF_AWESOME_LOCK:+\\u$CODEPOINT_OF_AWESOME_LOCK}"
|
|
445
|
+
NORDVPN_ICON "${CODEPOINT_OF_AWESOME_LOCK:+\\u$CODEPOINT_OF_AWESOME_LOCK}"
|
|
446
|
+
EXECUTION_TIME_ICON "${CODEPOINT_OF_AWESOME_HOURGLASS_END:+\\u$CODEPOINT_OF_AWESOME_HOURGLASS_END$s}"
|
|
447
|
+
SSH_ICON 'ssh'
|
|
448
|
+
VPN_ICON "${CODEPOINT_OF_AWESOME_LOCK:+\\u$CODEPOINT_OF_AWESOME_LOCK}"
|
|
449
|
+
KUBERNETES_ICON '\U2388' # ⎈
|
|
450
|
+
DROPBOX_ICON "${CODEPOINT_OF_AWESOME_DROPBOX:+\\u$CODEPOINT_OF_AWESOME_DROPBOX$s}"
|
|
451
|
+
DATE_ICON '\uF073 ' #
|
|
452
|
+
TIME_ICON '\uF017 ' #
|
|
453
|
+
JAVA_ICON '\U2615' # ☕︎
|
|
454
|
+
LARAVEL_ICON ''
|
|
455
|
+
RANGER_ICON '\u2B50' # ⭐
|
|
456
|
+
YAZI_ICON '\u2B50' # ⭐
|
|
457
|
+
MIDNIGHT_COMMANDER_ICON 'mc'
|
|
458
|
+
VIM_ICON 'vim'
|
|
459
|
+
TERRAFORM_ICON 'tf'
|
|
460
|
+
PROXY_ICON '\u2194' # ↔
|
|
461
|
+
DOTNET_ICON '.NET'
|
|
462
|
+
DOTNET_CORE_ICON '.NET'
|
|
463
|
+
AZURE_ICON '\u2601' # ☁
|
|
464
|
+
DIRENV_ICON '\u25BC' # ▼
|
|
465
|
+
FLUTTER_ICON 'F'
|
|
466
|
+
GCLOUD_ICON 'G'
|
|
467
|
+
LUA_ICON 'lua'
|
|
468
|
+
PERL_ICON 'perl'
|
|
469
|
+
NNN_ICON 'nnn'
|
|
470
|
+
LF_ICON 'lf'
|
|
471
|
+
XPLR_ICON 'xplr'
|
|
472
|
+
TIMEWARRIOR_ICON 'tw'
|
|
473
|
+
TASKWARRIOR_ICON 'task'
|
|
474
|
+
NIX_SHELL_ICON 'nix'
|
|
475
|
+
WIFI_ICON 'WiFi'
|
|
476
|
+
ERLANG_ICON 'erl'
|
|
477
|
+
ELIXIR_ICON 'elixir'
|
|
478
|
+
POSTGRES_ICON 'postgres'
|
|
479
|
+
PHP_ICON 'php'
|
|
480
|
+
HASKELL_ICON 'hs'
|
|
481
|
+
PACKAGE_ICON 'pkg'
|
|
482
|
+
JULIA_ICON 'jl'
|
|
483
|
+
SCALA_ICON 'scala'
|
|
484
|
+
TOOLBOX_ICON '\u2B22' # ⬢
|
|
485
|
+
ARCH_ICON 'arch'
|
|
486
|
+
HISTORY_ICON 'hist'
|
|
487
|
+
)
|
|
488
|
+
;;
|
|
489
|
+
'nerdfont-v3')
|
|
490
|
+
# In this version of Nerd Fonts the Material icons are mapped to U+F0001-U+F19C3.
|
|
491
|
+
# The font may also have Material icons in the old range of U+F500-U+FD46 but
|
|
492
|
+
# powerlevel10k won't rely on them.
|
|
493
|
+
icons=(
|
|
494
|
+
RULER_CHAR '\u2500' # ─
|
|
495
|
+
LEFT_SEGMENT_SEPARATOR '\uE0B0' #
|
|
496
|
+
RIGHT_SEGMENT_SEPARATOR '\uE0B2' #
|
|
497
|
+
LEFT_SEGMENT_END_SEPARATOR ' ' #
|
|
498
|
+
LEFT_SUBSEGMENT_SEPARATOR '\uE0B1' #
|
|
499
|
+
RIGHT_SUBSEGMENT_SEPARATOR '\uE0B3' #
|
|
500
|
+
CARRIAGE_RETURN_ICON '\u21B5' # ↵
|
|
501
|
+
ROOT_ICON '\uE614'$q #
|
|
502
|
+
SUDO_ICON '\uF09C'$s #
|
|
503
|
+
RUBY_ICON '\uF219 ' #
|
|
504
|
+
AWS_ICON '\uF270'$s #
|
|
505
|
+
AWS_EB_ICON '\UF1BD'$q$q #
|
|
506
|
+
BACKGROUND_JOBS_ICON '\uF013 ' #
|
|
507
|
+
TEST_ICON '\uF188'$s #
|
|
508
|
+
TODO_ICON '\u2611' # ☑
|
|
509
|
+
BATTERY_ICON '\UF240 ' #
|
|
510
|
+
DISK_ICON '\uF0A0'$s #
|
|
511
|
+
OK_ICON '\uF00C'$s #
|
|
512
|
+
FAIL_ICON '\uF00D' #
|
|
513
|
+
SYMFONY_ICON '\uE757' #
|
|
514
|
+
NODE_ICON '\uE617 ' #
|
|
515
|
+
NODEJS_ICON '\uE617 ' #
|
|
516
|
+
MULTILINE_FIRST_PROMPT_PREFIX '\u256D\U2500' # ╭─
|
|
517
|
+
MULTILINE_NEWLINE_PROMPT_PREFIX '\u251C\U2500' # ├─
|
|
518
|
+
MULTILINE_LAST_PROMPT_PREFIX '\u2570\U2500 ' # ╰─
|
|
519
|
+
APPLE_ICON '\uF179' #
|
|
520
|
+
WINDOWS_ICON '\uF17A'$s #
|
|
521
|
+
FREEBSD_ICON '\UF30C ' #
|
|
522
|
+
ANDROID_ICON '\uF17B' #
|
|
523
|
+
LINUX_ARCH_ICON '\uF303' #
|
|
524
|
+
LINUX_CENTOS_ICON '\uF304'$s #
|
|
525
|
+
LINUX_COREOS_ICON '\uF305'$s #
|
|
526
|
+
LINUX_DEBIAN_ICON '\uF306' #
|
|
527
|
+
LINUX_RASPBIAN_ICON '\uF315' #
|
|
528
|
+
LINUX_ELEMENTARY_ICON '\uF309'$s #
|
|
529
|
+
LINUX_FEDORA_ICON '\uF30a'$s #
|
|
530
|
+
LINUX_GENTOO_ICON '\uF30d'$s #
|
|
531
|
+
LINUX_MAGEIA_ICON '\uF310' #
|
|
532
|
+
LINUX_MINT_ICON '\uF30e'$s #
|
|
533
|
+
LINUX_NIXOS_ICON '\uF313'$s #
|
|
534
|
+
LINUX_MANJARO_ICON '\uF312'$s #
|
|
535
|
+
LINUX_DEVUAN_ICON '\uF307'$s #
|
|
536
|
+
LINUX_ALPINE_ICON '\uF300'$s #
|
|
537
|
+
LINUX_AOSC_ICON '\uF301'$s #
|
|
538
|
+
LINUX_OPENSUSE_ICON '\uF314'$s #
|
|
539
|
+
LINUX_SABAYON_ICON '\uF317'$s #
|
|
540
|
+
LINUX_SLACKWARE_ICON '\uF319'$s #
|
|
541
|
+
LINUX_VOID_ICON '\UF32E'$s #
|
|
542
|
+
LINUX_ARTIX_ICON '\UF31F'$s #
|
|
543
|
+
LINUX_UBUNTU_ICON '\uF31b'$s #
|
|
544
|
+
LINUX_KALI_ICON '\uF327'$s #
|
|
545
|
+
LINUX_RHEL_ICON '\UF111B'$s #
|
|
546
|
+
LINUX_AMZN_ICON '\uF270'$s #
|
|
547
|
+
LINUX_ENDEAVOUROS_ICON '\UF322'$s #
|
|
548
|
+
LINUX_ROCKY_ICON '\UF32B'$s #
|
|
549
|
+
LINUX_ALMALINUX_ICON '\UF31D'$s #
|
|
550
|
+
LINUX_GUIX_ICON '\UF325'$s #
|
|
551
|
+
LINUX_NEON_ICON '\uF17C' #
|
|
552
|
+
LINUX_ICON '\uF17C' #
|
|
553
|
+
SUNOS_ICON '\uF185 ' #
|
|
554
|
+
HOME_ICON '\uF015'$s #
|
|
555
|
+
HOME_SUB_ICON '\uF07C'$s #
|
|
556
|
+
FOLDER_ICON '\uF115'$s #
|
|
557
|
+
ETC_ICON '\uF013'$s #
|
|
558
|
+
NETWORK_ICON '\UF0378'$s #
|
|
559
|
+
LOAD_ICON '\uF080 ' #
|
|
560
|
+
SWAP_ICON '\uF464'$s #
|
|
561
|
+
RAM_ICON '\uF0E4'$s #
|
|
562
|
+
SERVER_ICON '\uF0AE'$s #
|
|
563
|
+
VCS_UNTRACKED_ICON '\uF059'$s #
|
|
564
|
+
VCS_UNSTAGED_ICON '\uF06A'$s #
|
|
565
|
+
VCS_STAGED_ICON '\uF055'$s #
|
|
566
|
+
VCS_STASH_ICON '\uF01C ' #
|
|
567
|
+
VCS_INCOMING_CHANGES_ICON '\uF01A ' #
|
|
568
|
+
VCS_OUTGOING_CHANGES_ICON '\uF01B ' #
|
|
569
|
+
VCS_TAG_ICON '\uF02B ' #
|
|
570
|
+
VCS_BOOKMARK_ICON '\uF461 ' #
|
|
571
|
+
VCS_COMMIT_ICON '\uE729 ' #
|
|
572
|
+
VCS_BRANCH_ICON '\uF126 ' #
|
|
573
|
+
VCS_REMOTE_BRANCH_ICON '\uE728 ' #
|
|
574
|
+
VCS_LOADING_ICON '' #
|
|
575
|
+
VCS_GIT_ICON '\uF1D3 ' #
|
|
576
|
+
VCS_GIT_GITHUB_ICON '\uF113 ' #
|
|
577
|
+
VCS_GIT_BITBUCKET_ICON '\uE703 ' #
|
|
578
|
+
VCS_GIT_GITLAB_ICON '\uF296 ' #
|
|
579
|
+
VCS_GIT_AZURE_ICON '\uEBE8 ' #
|
|
580
|
+
VCS_GIT_ARCHLINUX_ICON '\uF303 ' #
|
|
581
|
+
# v3.1 has \uF330.
|
|
582
|
+
VCS_GIT_CODEBERG_ICON '\uF1D3 ' #
|
|
583
|
+
VCS_GIT_DEBIAN_ICON '\uF306 ' #
|
|
584
|
+
VCS_GIT_FREEBSD_ICON '\UF30C ' #
|
|
585
|
+
# v3.1 has \uF360.
|
|
586
|
+
VCS_GIT_FREEDESKTOP_ICON '\uF296 ' #
|
|
587
|
+
# v3.1 has \uF361.
|
|
588
|
+
VCS_GIT_GNOME_ICON '\uF296 ' #
|
|
589
|
+
VCS_GIT_GNU_ICON '\uE779 ' #
|
|
590
|
+
# v3.1 has \uF332.
|
|
591
|
+
VCS_GIT_KDE_ICON '\uF296 ' #
|
|
592
|
+
VCS_GIT_LINUX_ICON '\uF17C ' #
|
|
593
|
+
# v3.1 has \uF339.
|
|
594
|
+
VCS_GIT_GITEA_ICON '\uF1D3 ' #
|
|
595
|
+
VCS_GIT_SOURCEHUT_ICON '\uF1DB ' #
|
|
596
|
+
VCS_HG_ICON '\uF0C3 ' #
|
|
597
|
+
VCS_SVN_ICON '\uE72D'$q #
|
|
598
|
+
RUST_ICON '\uE7A8'$q #
|
|
599
|
+
PYTHON_ICON '\UE73C ' #
|
|
600
|
+
CHEZMOI_ICON '\uF015'$s #
|
|
601
|
+
SWIFT_ICON '\uE755' #
|
|
602
|
+
GO_ICON '\uE626' #
|
|
603
|
+
GOLANG_ICON '\uE626' #
|
|
604
|
+
PUBLIC_IP_ICON '\UF0AC'$s #
|
|
605
|
+
LOCK_ICON '\UF023' #
|
|
606
|
+
NORDVPN_ICON '\UF023' #
|
|
607
|
+
EXECUTION_TIME_ICON '\uF252'$s #
|
|
608
|
+
SSH_ICON '\uF489'$s #
|
|
609
|
+
VPN_ICON '\UF023' #
|
|
610
|
+
KUBERNETES_ICON '\UF10FE' #
|
|
611
|
+
DROPBOX_ICON '\UF16B'$s #
|
|
612
|
+
DATE_ICON '\uF073 ' #
|
|
613
|
+
TIME_ICON '\uF017 ' #
|
|
614
|
+
JAVA_ICON '\uE738' #
|
|
615
|
+
LARAVEL_ICON '\ue73f'$q #
|
|
616
|
+
RANGER_ICON '\uF00b ' #
|
|
617
|
+
YAZI_ICON '\uF00b ' #
|
|
618
|
+
MIDNIGHT_COMMANDER_ICON 'mc' # mc
|
|
619
|
+
VIM_ICON '\uE62B' #
|
|
620
|
+
TERRAFORM_ICON '\uF1BB ' #
|
|
621
|
+
PROXY_ICON '\u2194' # ↔
|
|
622
|
+
DOTNET_ICON '\uE77F' #
|
|
623
|
+
DOTNET_CORE_ICON '\uE77F' #
|
|
624
|
+
AZURE_ICON '\uEBD8 ' #
|
|
625
|
+
DIRENV_ICON '\u25BC' # ▼
|
|
626
|
+
FLUTTER_ICON 'F' # F
|
|
627
|
+
GCLOUD_ICON '\UF02AD' #
|
|
628
|
+
LUA_ICON '\uE620' #
|
|
629
|
+
PERL_ICON '\uE769' #
|
|
630
|
+
NNN_ICON 'nnn' # nnn
|
|
631
|
+
LF_ICON 'lf' # lf
|
|
632
|
+
XPLR_ICON 'xplr' # xplr
|
|
633
|
+
TIMEWARRIOR_ICON '\uF49B' #
|
|
634
|
+
TASKWARRIOR_ICON '\uF4A0 ' #
|
|
635
|
+
NIX_SHELL_ICON '\uF313 ' #
|
|
636
|
+
WIFI_ICON '\uF1EB ' #
|
|
637
|
+
ERLANG_ICON '\uE7B1 ' #
|
|
638
|
+
ELIXIR_ICON '\uE62D' #
|
|
639
|
+
POSTGRES_ICON '\uE76E' #
|
|
640
|
+
PHP_ICON '\uE608' #
|
|
641
|
+
HASKELL_ICON '\uE61F' #
|
|
642
|
+
PACKAGE_ICON '\UF03D7' #
|
|
643
|
+
JULIA_ICON '\uE624' #
|
|
644
|
+
SCALA_ICON '\uE737' #
|
|
645
|
+
TOOLBOX_ICON '\uE20F'$s #
|
|
646
|
+
ARCH_ICON '\uE266' #
|
|
647
|
+
HISTORY_ICON '\uF1DA'$s #
|
|
648
|
+
)
|
|
649
|
+
;;
|
|
650
|
+
'nerdfont-complete'|'nerdfont-fontconfig')
|
|
651
|
+
# nerd-font patched (complete) font required! See
|
|
652
|
+
# https://github.com/ryanoasis/nerd-fonts
|
|
653
|
+
# http://nerdfonts.com/#cheat-sheet
|
|
654
|
+
icons=(
|
|
655
|
+
RULER_CHAR '\u2500' # ─
|
|
656
|
+
LEFT_SEGMENT_SEPARATOR '\uE0B0' #
|
|
657
|
+
RIGHT_SEGMENT_SEPARATOR '\uE0B2' #
|
|
658
|
+
LEFT_SEGMENT_END_SEPARATOR ' ' # Whitespace
|
|
659
|
+
LEFT_SUBSEGMENT_SEPARATOR '\uE0B1' #
|
|
660
|
+
RIGHT_SUBSEGMENT_SEPARATOR '\uE0B3' #
|
|
661
|
+
CARRIAGE_RETURN_ICON '\u21B5' # ↵
|
|
662
|
+
ROOT_ICON '\uE614'$q #
|
|
663
|
+
SUDO_ICON '\uF09C'$s #
|
|
664
|
+
RUBY_ICON '\uF219 ' #
|
|
665
|
+
AWS_ICON '\uF270'$s #
|
|
666
|
+
AWS_EB_ICON '\UF1BD'$q$q #
|
|
667
|
+
BACKGROUND_JOBS_ICON '\uF013 ' #
|
|
668
|
+
TEST_ICON '\uF188'$s #
|
|
669
|
+
TODO_ICON '\u2611' # ☑
|
|
670
|
+
BATTERY_ICON '\UF240 ' #
|
|
671
|
+
DISK_ICON '\uF0A0'$s #
|
|
672
|
+
OK_ICON '\uF00C'$s #
|
|
673
|
+
FAIL_ICON '\uF00D' #
|
|
674
|
+
SYMFONY_ICON '\uE757' #
|
|
675
|
+
NODE_ICON '\uE617 ' #
|
|
676
|
+
NODEJS_ICON '\uE617 ' #
|
|
677
|
+
MULTILINE_FIRST_PROMPT_PREFIX '\u256D\U2500' # ╭─
|
|
678
|
+
MULTILINE_NEWLINE_PROMPT_PREFIX '\u251C\U2500' # ├─
|
|
679
|
+
MULTILINE_LAST_PROMPT_PREFIX '\u2570\U2500 ' # ╰─
|
|
680
|
+
APPLE_ICON '\uF179' #
|
|
681
|
+
WINDOWS_ICON '\uF17A'$s #
|
|
682
|
+
FREEBSD_ICON '\UF30C ' #
|
|
683
|
+
ANDROID_ICON '\uF17B' #
|
|
684
|
+
LINUX_ARCH_ICON '\uF303' #
|
|
685
|
+
LINUX_CENTOS_ICON '\uF304'$s #
|
|
686
|
+
LINUX_COREOS_ICON '\uF305'$s #
|
|
687
|
+
LINUX_DEBIAN_ICON '\uF306' #
|
|
688
|
+
LINUX_RASPBIAN_ICON '\uF315' #
|
|
689
|
+
LINUX_ELEMENTARY_ICON '\uF309'$s #
|
|
690
|
+
LINUX_FEDORA_ICON '\uF30a'$s #
|
|
691
|
+
LINUX_GENTOO_ICON '\uF30d'$s #
|
|
692
|
+
LINUX_MAGEIA_ICON '\uF310' #
|
|
693
|
+
LINUX_MINT_ICON '\uF30e'$s #
|
|
694
|
+
LINUX_NIXOS_ICON '\uF313'$s #
|
|
695
|
+
LINUX_MANJARO_ICON '\uF312'$s #
|
|
696
|
+
LINUX_DEVUAN_ICON '\uF307'$s #
|
|
697
|
+
LINUX_ALPINE_ICON '\uF300'$s #
|
|
698
|
+
LINUX_AOSC_ICON '\uF301'$s #
|
|
699
|
+
LINUX_OPENSUSE_ICON '\uF314'$s #
|
|
700
|
+
LINUX_SABAYON_ICON '\uF317'$s #
|
|
701
|
+
LINUX_SLACKWARE_ICON '\uF319'$s #
|
|
702
|
+
LINUX_VOID_ICON '\uF17C' #
|
|
703
|
+
LINUX_ARTIX_ICON '\uF17C' #
|
|
704
|
+
LINUX_UBUNTU_ICON '\uF31b'$s #
|
|
705
|
+
LINUX_KALI_ICON '\uF17C' #
|
|
706
|
+
LINUX_RHEL_ICON '\uF316'$s #
|
|
707
|
+
LINUX_AMZN_ICON '\uF270'$s #
|
|
708
|
+
LINUX_ENDEAVOUROS_ICON '\uF17C' #
|
|
709
|
+
LINUX_ROCKY_ICON '\uF17C' #
|
|
710
|
+
LINUX_ALMALINUX_ICON '\uF17C' #
|
|
711
|
+
LINUX_GUIX_ICON '\uF325'$s #
|
|
712
|
+
LINUX_NEON_ICON '\uF17C' #
|
|
713
|
+
LINUX_ICON '\uF17C' #
|
|
714
|
+
SUNOS_ICON '\uF185 ' #
|
|
715
|
+
HOME_ICON '\uF015'$s #
|
|
716
|
+
HOME_SUB_ICON '\uF07C'$s #
|
|
717
|
+
FOLDER_ICON '\uF115'$s #
|
|
718
|
+
ETC_ICON '\uF013'$s #
|
|
719
|
+
NETWORK_ICON '\uF50D'$s #
|
|
720
|
+
LOAD_ICON '\uF080 ' #
|
|
721
|
+
SWAP_ICON '\uF464'$s #
|
|
722
|
+
RAM_ICON '\uF0E4'$s #
|
|
723
|
+
SERVER_ICON '\uF0AE'$s #
|
|
724
|
+
VCS_UNTRACKED_ICON '\uF059'$s #
|
|
725
|
+
VCS_UNSTAGED_ICON '\uF06A'$s #
|
|
726
|
+
VCS_STAGED_ICON '\uF055'$s #
|
|
727
|
+
VCS_STASH_ICON '\uF01C ' #
|
|
728
|
+
VCS_INCOMING_CHANGES_ICON '\uF01A ' #
|
|
729
|
+
VCS_OUTGOING_CHANGES_ICON '\uF01B ' #
|
|
730
|
+
VCS_TAG_ICON '\uF02B ' #
|
|
731
|
+
VCS_BOOKMARK_ICON '\uF461 ' #
|
|
732
|
+
VCS_COMMIT_ICON '\uE729 ' #
|
|
733
|
+
VCS_BRANCH_ICON '\uF126 ' #
|
|
734
|
+
VCS_REMOTE_BRANCH_ICON '\uE728 ' #
|
|
735
|
+
VCS_LOADING_ICON ''
|
|
736
|
+
VCS_GIT_ICON '\uF1D3 ' #
|
|
737
|
+
VCS_GIT_GITHUB_ICON '\uF113 ' #
|
|
738
|
+
VCS_GIT_BITBUCKET_ICON '\uE703 ' #
|
|
739
|
+
VCS_GIT_GITLAB_ICON '\uF296 ' #
|
|
740
|
+
VCS_GIT_AZURE_ICON '\uFD03 ' # ﴃ
|
|
741
|
+
VCS_GIT_ARCHLINUX_ICON '\uF303 ' #
|
|
742
|
+
VCS_GIT_CODEBERG_ICON '\uF1D3 ' #
|
|
743
|
+
VCS_GIT_DEBIAN_ICON '\uF306 ' #
|
|
744
|
+
VCS_GIT_FREEBSD_ICON '\UF30C ' #
|
|
745
|
+
VCS_GIT_FREEDESKTOP_ICON '\uF296 ' #
|
|
746
|
+
VCS_GIT_GNOME_ICON '\uF296 ' #
|
|
747
|
+
VCS_GIT_GNU_ICON '\uE779 ' #
|
|
748
|
+
VCS_GIT_KDE_ICON '\uF296 ' #
|
|
749
|
+
VCS_GIT_LINUX_ICON '\uF17C ' #
|
|
750
|
+
VCS_GIT_GITEA_ICON '\uF1D3 ' #
|
|
751
|
+
VCS_GIT_SOURCEHUT_ICON '\uF1DB ' #
|
|
752
|
+
VCS_HG_ICON '\uF0C3 ' #
|
|
753
|
+
VCS_SVN_ICON '\uE72D'$q #
|
|
754
|
+
RUST_ICON '\uE7A8'$q #
|
|
755
|
+
PYTHON_ICON '\UE73C ' #
|
|
756
|
+
CHEZMOI_ICON '\uF015'$s #
|
|
757
|
+
SWIFT_ICON '\uE755' #
|
|
758
|
+
GO_ICON '\uE626' #
|
|
759
|
+
GOLANG_ICON '\uE626' #
|
|
760
|
+
PUBLIC_IP_ICON '\UF0AC'$s #
|
|
761
|
+
LOCK_ICON '\UF023' #
|
|
762
|
+
NORDVPN_ICON '\UF023' #
|
|
763
|
+
EXECUTION_TIME_ICON '\uF252'$s #
|
|
764
|
+
SSH_ICON '\uF489'$s #
|
|
765
|
+
VPN_ICON '\UF023'
|
|
766
|
+
KUBERNETES_ICON '\U2388' # ⎈
|
|
767
|
+
DROPBOX_ICON '\UF16B'$s #
|
|
768
|
+
DATE_ICON '\uF073 ' #
|
|
769
|
+
TIME_ICON '\uF017 ' #
|
|
770
|
+
JAVA_ICON '\uE738' #
|
|
771
|
+
LARAVEL_ICON '\ue73f'$q #
|
|
772
|
+
RANGER_ICON '\uF00b ' #
|
|
773
|
+
YAZI_ICON '\uF00b ' #
|
|
774
|
+
MIDNIGHT_COMMANDER_ICON 'mc'
|
|
775
|
+
VIM_ICON '\uE62B' #
|
|
776
|
+
TERRAFORM_ICON '\uF1BB ' #
|
|
777
|
+
PROXY_ICON '\u2194' # ↔
|
|
778
|
+
DOTNET_ICON '\uE77F' #
|
|
779
|
+
DOTNET_CORE_ICON '\uE77F' #
|
|
780
|
+
AZURE_ICON '\uFD03' # ﴃ
|
|
781
|
+
DIRENV_ICON '\u25BC' # ▼
|
|
782
|
+
FLUTTER_ICON 'F'
|
|
783
|
+
GCLOUD_ICON '\uF7B7' #
|
|
784
|
+
LUA_ICON '\uE620' #
|
|
785
|
+
PERL_ICON '\uE769' #
|
|
786
|
+
NNN_ICON 'nnn'
|
|
787
|
+
LF_ICON 'lf'
|
|
788
|
+
XPLR_ICON 'xplr'
|
|
789
|
+
TIMEWARRIOR_ICON '\uF49B' #
|
|
790
|
+
TASKWARRIOR_ICON '\uF4A0 ' #
|
|
791
|
+
NIX_SHELL_ICON '\uF313 ' #
|
|
792
|
+
WIFI_ICON '\uF1EB ' #
|
|
793
|
+
ERLANG_ICON '\uE7B1 ' #
|
|
794
|
+
ELIXIR_ICON '\uE62D' #
|
|
795
|
+
POSTGRES_ICON '\uE76E' #
|
|
796
|
+
PHP_ICON '\uE608' #
|
|
797
|
+
HASKELL_ICON '\uE61F' #
|
|
798
|
+
PACKAGE_ICON '\uF8D6' #
|
|
799
|
+
JULIA_ICON '\uE624' #
|
|
800
|
+
SCALA_ICON '\uE737' #
|
|
801
|
+
TOOLBOX_ICON '\uE20F'$s #
|
|
802
|
+
ARCH_ICON '\uE266' #
|
|
803
|
+
HISTORY_ICON '\uF1DA'$s #
|
|
804
|
+
)
|
|
805
|
+
;;
|
|
806
|
+
ascii)
|
|
807
|
+
icons=(
|
|
808
|
+
RULER_CHAR '-'
|
|
809
|
+
LEFT_SEGMENT_SEPARATOR ''
|
|
810
|
+
RIGHT_SEGMENT_SEPARATOR ''
|
|
811
|
+
LEFT_SEGMENT_END_SEPARATOR ' '
|
|
812
|
+
LEFT_SUBSEGMENT_SEPARATOR '|'
|
|
813
|
+
RIGHT_SUBSEGMENT_SEPARATOR '|'
|
|
814
|
+
CARRIAGE_RETURN_ICON ''
|
|
815
|
+
ROOT_ICON '#'
|
|
816
|
+
SUDO_ICON ''
|
|
817
|
+
RUBY_ICON 'rb'
|
|
818
|
+
AWS_ICON 'aws'
|
|
819
|
+
AWS_EB_ICON 'eb'
|
|
820
|
+
BACKGROUND_JOBS_ICON '%%'
|
|
821
|
+
TEST_ICON ''
|
|
822
|
+
TODO_ICON 'todo'
|
|
823
|
+
BATTERY_ICON 'battery'
|
|
824
|
+
DISK_ICON 'disk'
|
|
825
|
+
OK_ICON 'ok'
|
|
826
|
+
FAIL_ICON 'err'
|
|
827
|
+
SYMFONY_ICON 'symphony'
|
|
828
|
+
NODE_ICON 'node'
|
|
829
|
+
NODEJS_ICON 'node'
|
|
830
|
+
MULTILINE_FIRST_PROMPT_PREFIX ''
|
|
831
|
+
MULTILINE_NEWLINE_PROMPT_PREFIX ''
|
|
832
|
+
MULTILINE_LAST_PROMPT_PREFIX ''
|
|
833
|
+
APPLE_ICON 'mac'
|
|
834
|
+
WINDOWS_ICON 'win'
|
|
835
|
+
FREEBSD_ICON 'bsd'
|
|
836
|
+
ANDROID_ICON 'android'
|
|
837
|
+
LINUX_ICON 'linux'
|
|
838
|
+
LINUX_ARCH_ICON 'arch'
|
|
839
|
+
LINUX_DEBIAN_ICON 'debian'
|
|
840
|
+
LINUX_RASPBIAN_ICON 'pi'
|
|
841
|
+
LINUX_UBUNTU_ICON 'ubuntu'
|
|
842
|
+
LINUX_KALI_ICON 'kali'
|
|
843
|
+
LINUX_CENTOS_ICON 'centos'
|
|
844
|
+
LINUX_COREOS_ICON 'coreos'
|
|
845
|
+
LINUX_ELEMENTARY_ICON 'elementary'
|
|
846
|
+
LINUX_MINT_ICON 'mint'
|
|
847
|
+
LINUX_FEDORA_ICON 'fedora'
|
|
848
|
+
LINUX_GENTOO_ICON 'gentoo'
|
|
849
|
+
LINUX_MAGEIA_ICON 'mageia'
|
|
850
|
+
LINUX_NIXOS_ICON 'nixos'
|
|
851
|
+
LINUX_MANJARO_ICON 'manjaro'
|
|
852
|
+
LINUX_DEVUAN_ICON 'devuan'
|
|
853
|
+
LINUX_ALPINE_ICON 'alpine'
|
|
854
|
+
LINUX_AOSC_ICON 'aosc'
|
|
855
|
+
LINUX_OPENSUSE_ICON 'suse'
|
|
856
|
+
LINUX_SABAYON_ICON 'sabayon'
|
|
857
|
+
LINUX_SLACKWARE_ICON 'slack'
|
|
858
|
+
LINUX_VOID_ICON 'void'
|
|
859
|
+
LINUX_ARTIX_ICON 'artix'
|
|
860
|
+
LINUX_RHEL_ICON 'rhel'
|
|
861
|
+
LINUX_AMZN_ICON 'amzn'
|
|
862
|
+
LINUX_ENDEAVOUROS_ICON 'edvos'
|
|
863
|
+
LINUX_ROCKY_ICON 'rocky'
|
|
864
|
+
LINUX_ALMALINUX_ICON 'alma'
|
|
865
|
+
LINUX_GUIX_ICON 'guix'
|
|
866
|
+
LINUX_NEON_ICON 'neon'
|
|
867
|
+
SUNOS_ICON 'sunos'
|
|
868
|
+
HOME_ICON ''
|
|
869
|
+
HOME_SUB_ICON ''
|
|
870
|
+
FOLDER_ICON ''
|
|
871
|
+
ETC_ICON ''
|
|
872
|
+
NETWORK_ICON 'ip'
|
|
873
|
+
LOAD_ICON 'cpu'
|
|
874
|
+
SWAP_ICON 'swap'
|
|
875
|
+
RAM_ICON 'ram'
|
|
876
|
+
SERVER_ICON ''
|
|
877
|
+
VCS_UNTRACKED_ICON '?'
|
|
878
|
+
VCS_UNSTAGED_ICON '!'
|
|
879
|
+
VCS_STAGED_ICON '+'
|
|
880
|
+
VCS_STASH_ICON '#'
|
|
881
|
+
VCS_INCOMING_CHANGES_ICON '<'
|
|
882
|
+
VCS_OUTGOING_CHANGES_ICON '>'
|
|
883
|
+
VCS_TAG_ICON ''
|
|
884
|
+
VCS_BOOKMARK_ICON '^'
|
|
885
|
+
VCS_COMMIT_ICON '@'
|
|
886
|
+
VCS_BRANCH_ICON ''
|
|
887
|
+
VCS_REMOTE_BRANCH_ICON ':'
|
|
888
|
+
VCS_LOADING_ICON ''
|
|
889
|
+
VCS_GIT_ICON ''
|
|
890
|
+
VCS_GIT_GITHUB_ICON ''
|
|
891
|
+
VCS_GIT_BITBUCKET_ICON ''
|
|
892
|
+
VCS_GIT_GITLAB_ICON ''
|
|
893
|
+
VCS_GIT_AZURE_ICON ''
|
|
894
|
+
VCS_GIT_ARCHLINUX_ICON ''
|
|
895
|
+
VCS_GIT_CODEBERG_ICON ''
|
|
896
|
+
VCS_GIT_DEBIAN_ICON ''
|
|
897
|
+
VCS_GIT_FREEBSD_ICON ''
|
|
898
|
+
VCS_GIT_FREEDESKTOP_ICON ''
|
|
899
|
+
VCS_GIT_GNOME_ICON ''
|
|
900
|
+
VCS_GIT_GNU_ICON ''
|
|
901
|
+
VCS_GIT_KDE_ICON ''
|
|
902
|
+
VCS_GIT_LINUX_ICON ''
|
|
903
|
+
VCS_GIT_GITEA_ICON ''
|
|
904
|
+
VCS_GIT_SOURCEHUT_ICON ''
|
|
905
|
+
VCS_HG_ICON ''
|
|
906
|
+
VCS_SVN_ICON ''
|
|
907
|
+
RUST_ICON 'rust'
|
|
908
|
+
PYTHON_ICON 'py'
|
|
909
|
+
CHEZMOI_ICON 'chezmoi'
|
|
910
|
+
SWIFT_ICON 'swift'
|
|
911
|
+
GO_ICON 'go'
|
|
912
|
+
GOLANG_ICON 'go'
|
|
913
|
+
PUBLIC_IP_ICON 'ip'
|
|
914
|
+
LOCK_ICON '!w'
|
|
915
|
+
NORDVPN_ICON 'nordvpn'
|
|
916
|
+
EXECUTION_TIME_ICON ''
|
|
917
|
+
SSH_ICON 'ssh'
|
|
918
|
+
VPN_ICON 'vpn'
|
|
919
|
+
KUBERNETES_ICON 'kube'
|
|
920
|
+
DROPBOX_ICON 'dropbox'
|
|
921
|
+
DATE_ICON ''
|
|
922
|
+
TIME_ICON ''
|
|
923
|
+
JAVA_ICON 'java'
|
|
924
|
+
LARAVEL_ICON ''
|
|
925
|
+
RANGER_ICON 'ranger'
|
|
926
|
+
YAZI_ICON 'yazi'
|
|
927
|
+
MIDNIGHT_COMMANDER_ICON 'mc'
|
|
928
|
+
VIM_ICON 'vim'
|
|
929
|
+
TERRAFORM_ICON 'tf'
|
|
930
|
+
PROXY_ICON 'proxy'
|
|
931
|
+
DOTNET_ICON '.net'
|
|
932
|
+
DOTNET_CORE_ICON '.net'
|
|
933
|
+
AZURE_ICON 'az'
|
|
934
|
+
DIRENV_ICON 'direnv'
|
|
935
|
+
FLUTTER_ICON 'flutter'
|
|
936
|
+
GCLOUD_ICON 'gcloud'
|
|
937
|
+
LUA_ICON 'lua'
|
|
938
|
+
PERL_ICON 'perl'
|
|
939
|
+
NNN_ICON 'nnn'
|
|
940
|
+
LF_ICON 'lf'
|
|
941
|
+
XPLR_ICON 'xplr'
|
|
942
|
+
TIMEWARRIOR_ICON 'tw'
|
|
943
|
+
TASKWARRIOR_ICON 'task'
|
|
944
|
+
NIX_SHELL_ICON 'nix'
|
|
945
|
+
WIFI_ICON 'wifi'
|
|
946
|
+
ERLANG_ICON 'erlang'
|
|
947
|
+
ELIXIR_ICON 'elixir'
|
|
948
|
+
POSTGRES_ICON 'postgres'
|
|
949
|
+
PHP_ICON 'php'
|
|
950
|
+
HASKELL_ICON 'hs'
|
|
951
|
+
PACKAGE_ICON 'pkg'
|
|
952
|
+
JULIA_ICON 'jl'
|
|
953
|
+
SCALA_ICON 'scala'
|
|
954
|
+
TOOLBOX_ICON 'toolbox'
|
|
955
|
+
ARCH_ICON 'arch'
|
|
956
|
+
HISTORY_ICON 'hist'
|
|
957
|
+
)
|
|
958
|
+
;;
|
|
959
|
+
*)
|
|
960
|
+
# Powerline-Patched Font required!
|
|
961
|
+
# See https://github.com/Lokaltog/powerline-fonts
|
|
962
|
+
icons=(
|
|
963
|
+
RULER_CHAR '\u2500' # ─
|
|
964
|
+
LEFT_SEGMENT_SEPARATOR '\uE0B0' #
|
|
965
|
+
RIGHT_SEGMENT_SEPARATOR '\uE0B2' #
|
|
966
|
+
LEFT_SEGMENT_END_SEPARATOR ' ' # Whitespace
|
|
967
|
+
LEFT_SUBSEGMENT_SEPARATOR '\uE0B1' #
|
|
968
|
+
RIGHT_SUBSEGMENT_SEPARATOR '\uE0B3' #
|
|
969
|
+
CARRIAGE_RETURN_ICON '\u21B5' # ↵
|
|
970
|
+
ROOT_ICON '\u26A1' # ⚡
|
|
971
|
+
SUDO_ICON ''
|
|
972
|
+
RUBY_ICON 'Ruby'
|
|
973
|
+
AWS_ICON 'AWS'
|
|
974
|
+
AWS_EB_ICON '\U1F331'$q # 🌱
|
|
975
|
+
BACKGROUND_JOBS_ICON '\u2699' # ⚙
|
|
976
|
+
TEST_ICON ''
|
|
977
|
+
TODO_ICON '\u2206' # ∆
|
|
978
|
+
BATTERY_ICON '\U1F50B' # 🔋
|
|
979
|
+
DISK_ICON 'hdd'
|
|
980
|
+
OK_ICON '\u2714' # ✔
|
|
981
|
+
FAIL_ICON '\u2718' # ✘
|
|
982
|
+
SYMFONY_ICON 'SF'
|
|
983
|
+
NODE_ICON 'Node'
|
|
984
|
+
NODEJS_ICON 'Node'
|
|
985
|
+
MULTILINE_FIRST_PROMPT_PREFIX '\u256D\U2500' # ╭─
|
|
986
|
+
MULTILINE_NEWLINE_PROMPT_PREFIX '\u251C\U2500' # ├─
|
|
987
|
+
MULTILINE_LAST_PROMPT_PREFIX '\u2570\U2500 ' # ╰─
|
|
988
|
+
APPLE_ICON 'OSX'
|
|
989
|
+
WINDOWS_ICON 'WIN'
|
|
990
|
+
FREEBSD_ICON 'BSD'
|
|
991
|
+
ANDROID_ICON 'And'
|
|
992
|
+
LINUX_ICON 'Lx'
|
|
993
|
+
LINUX_ARCH_ICON 'Arc'
|
|
994
|
+
LINUX_DEBIAN_ICON 'Deb'
|
|
995
|
+
LINUX_RASPBIAN_ICON 'RPi'
|
|
996
|
+
LINUX_UBUNTU_ICON 'Ubu'
|
|
997
|
+
LINUX_KALI_ICON 'Kal'
|
|
998
|
+
LINUX_CENTOS_ICON 'Cen'
|
|
999
|
+
LINUX_COREOS_ICON 'Cor'
|
|
1000
|
+
LINUX_ELEMENTARY_ICON 'Elm'
|
|
1001
|
+
LINUX_MINT_ICON 'LMi'
|
|
1002
|
+
LINUX_FEDORA_ICON 'Fed'
|
|
1003
|
+
LINUX_GENTOO_ICON 'Gen'
|
|
1004
|
+
LINUX_MAGEIA_ICON 'Mag'
|
|
1005
|
+
LINUX_NIXOS_ICON 'Nix'
|
|
1006
|
+
LINUX_MANJARO_ICON 'Man'
|
|
1007
|
+
LINUX_DEVUAN_ICON 'Dev'
|
|
1008
|
+
LINUX_ALPINE_ICON 'Alp'
|
|
1009
|
+
LINUX_AOSC_ICON 'Aos'
|
|
1010
|
+
LINUX_OPENSUSE_ICON 'OSu'
|
|
1011
|
+
LINUX_SABAYON_ICON 'Sab'
|
|
1012
|
+
LINUX_SLACKWARE_ICON 'Sla'
|
|
1013
|
+
LINUX_VOID_ICON 'Vo'
|
|
1014
|
+
LINUX_ARTIX_ICON 'Art'
|
|
1015
|
+
LINUX_RHEL_ICON 'RH'
|
|
1016
|
+
LINUX_AMZN_ICON 'Amzn'
|
|
1017
|
+
LINUX_ENDEAVOUROS_ICON 'Edv'
|
|
1018
|
+
LINUX_ROCKY_ICON 'Roc'
|
|
1019
|
+
LINUX_ALMALINUX_ICON 'Alma'
|
|
1020
|
+
LINUX_GUIX_ICON 'Guix'
|
|
1021
|
+
LINUX_NEON_ICON 'Neon'
|
|
1022
|
+
SUNOS_ICON 'Sun'
|
|
1023
|
+
HOME_ICON ''
|
|
1024
|
+
HOME_SUB_ICON ''
|
|
1025
|
+
FOLDER_ICON ''
|
|
1026
|
+
ETC_ICON '\u2699' # ⚙
|
|
1027
|
+
NETWORK_ICON 'IP'
|
|
1028
|
+
LOAD_ICON 'L'
|
|
1029
|
+
SWAP_ICON 'SWP'
|
|
1030
|
+
RAM_ICON 'RAM'
|
|
1031
|
+
SERVER_ICON ''
|
|
1032
|
+
VCS_UNTRACKED_ICON '?'
|
|
1033
|
+
VCS_UNSTAGED_ICON '\u25CF' # ●
|
|
1034
|
+
VCS_STAGED_ICON '\u271A' # ✚
|
|
1035
|
+
VCS_STASH_ICON '\u235F' # ⍟
|
|
1036
|
+
VCS_INCOMING_CHANGES_ICON '\u2193' # ↓
|
|
1037
|
+
VCS_OUTGOING_CHANGES_ICON '\u2191' # ↑
|
|
1038
|
+
VCS_TAG_ICON ''
|
|
1039
|
+
VCS_BOOKMARK_ICON '\u263F' # ☿
|
|
1040
|
+
VCS_COMMIT_ICON ''
|
|
1041
|
+
VCS_BRANCH_ICON '\uE0A0 ' #
|
|
1042
|
+
VCS_REMOTE_BRANCH_ICON '\u2192' # →
|
|
1043
|
+
VCS_LOADING_ICON ''
|
|
1044
|
+
VCS_GIT_ICON ''
|
|
1045
|
+
VCS_GIT_GITHUB_ICON ''
|
|
1046
|
+
VCS_GIT_BITBUCKET_ICON ''
|
|
1047
|
+
VCS_GIT_GITLAB_ICON ''
|
|
1048
|
+
VCS_GIT_AZURE_ICON ''
|
|
1049
|
+
VCS_GIT_ARCHLINUX_ICON ''
|
|
1050
|
+
VCS_GIT_CODEBERG_ICON ''
|
|
1051
|
+
VCS_GIT_DEBIAN_ICON ''
|
|
1052
|
+
VCS_GIT_FREEBSD_ICON ''
|
|
1053
|
+
VCS_GIT_FREEDESKTOP_ICON ''
|
|
1054
|
+
VCS_GIT_GNOME_ICON ''
|
|
1055
|
+
VCS_GIT_GNU_ICON ''
|
|
1056
|
+
VCS_GIT_KDE_ICON ''
|
|
1057
|
+
VCS_GIT_LINUX_ICON ''
|
|
1058
|
+
VCS_GIT_GITEA_ICON ''
|
|
1059
|
+
VCS_GIT_SOURCEHUT_ICON ''
|
|
1060
|
+
VCS_HG_ICON ''
|
|
1061
|
+
VCS_SVN_ICON ''
|
|
1062
|
+
RUST_ICON 'R'
|
|
1063
|
+
PYTHON_ICON 'Py'
|
|
1064
|
+
CHEZMOI_ICON 'Chez'
|
|
1065
|
+
SWIFT_ICON 'Swift'
|
|
1066
|
+
GO_ICON 'Go'
|
|
1067
|
+
GOLANG_ICON 'Go'
|
|
1068
|
+
PUBLIC_IP_ICON 'IP'
|
|
1069
|
+
LOCK_ICON '\UE0A2'
|
|
1070
|
+
NORDVPN_ICON '\UE0A2'
|
|
1071
|
+
EXECUTION_TIME_ICON ''
|
|
1072
|
+
SSH_ICON 'ssh'
|
|
1073
|
+
VPN_ICON 'vpn'
|
|
1074
|
+
KUBERNETES_ICON '\U2388' # ⎈
|
|
1075
|
+
DROPBOX_ICON 'Dropbox'
|
|
1076
|
+
DATE_ICON ''
|
|
1077
|
+
TIME_ICON ''
|
|
1078
|
+
JAVA_ICON '\U2615' # ☕︎
|
|
1079
|
+
LARAVEL_ICON ''
|
|
1080
|
+
RANGER_ICON '\u2B50' # ⭐
|
|
1081
|
+
YAZI_ICON '\u2B50' # ⭐
|
|
1082
|
+
MIDNIGHT_COMMANDER_ICON 'mc'
|
|
1083
|
+
VIM_ICON 'vim'
|
|
1084
|
+
TERRAFORM_ICON 'tf'
|
|
1085
|
+
PROXY_ICON '\u2194' # ↔
|
|
1086
|
+
DOTNET_ICON '.NET'
|
|
1087
|
+
DOTNET_CORE_ICON '.NET'
|
|
1088
|
+
AZURE_ICON '\u2601' # ☁
|
|
1089
|
+
DIRENV_ICON '\u25BC' # ▼
|
|
1090
|
+
FLUTTER_ICON 'F'
|
|
1091
|
+
GCLOUD_ICON 'G'
|
|
1092
|
+
LUA_ICON 'lua'
|
|
1093
|
+
PERL_ICON 'perl'
|
|
1094
|
+
NNN_ICON 'nnn'
|
|
1095
|
+
LF_ICON 'lf'
|
|
1096
|
+
XPLR_ICON 'xplr'
|
|
1097
|
+
TIMEWARRIOR_ICON 'tw'
|
|
1098
|
+
TASKWARRIOR_ICON 'task'
|
|
1099
|
+
NIX_SHELL_ICON 'nix'
|
|
1100
|
+
WIFI_ICON 'WiFi'
|
|
1101
|
+
ERLANG_ICON 'erl'
|
|
1102
|
+
ELIXIR_ICON 'elixir'
|
|
1103
|
+
POSTGRES_ICON 'postgres'
|
|
1104
|
+
PHP_ICON 'php'
|
|
1105
|
+
HASKELL_ICON 'hs'
|
|
1106
|
+
PACKAGE_ICON 'pkg'
|
|
1107
|
+
JULIA_ICON 'jl'
|
|
1108
|
+
SCALA_ICON 'scala'
|
|
1109
|
+
TOOLBOX_ICON '\u2B22' # ⬢
|
|
1110
|
+
ARCH_ICON 'arch'
|
|
1111
|
+
HISTORY_ICON 'hist'
|
|
1112
|
+
)
|
|
1113
|
+
;;
|
|
1114
|
+
esac
|
|
1115
|
+
|
|
1116
|
+
# Override the above icon settings with any user-defined variables.
|
|
1117
|
+
case $POWERLEVEL9K_MODE in
|
|
1118
|
+
'flat')
|
|
1119
|
+
icons[LEFT_SEGMENT_SEPARATOR]=''
|
|
1120
|
+
icons[RIGHT_SEGMENT_SEPARATOR]=''
|
|
1121
|
+
icons[LEFT_SUBSEGMENT_SEPARATOR]='|'
|
|
1122
|
+
icons[RIGHT_SUBSEGMENT_SEPARATOR]='|'
|
|
1123
|
+
;;
|
|
1124
|
+
'compatible')
|
|
1125
|
+
icons[LEFT_SEGMENT_SEPARATOR]='\u2B80' # ⮀
|
|
1126
|
+
icons[RIGHT_SEGMENT_SEPARATOR]='\u2B82' # ⮂
|
|
1127
|
+
icons[VCS_BRANCH_ICON]='@'
|
|
1128
|
+
;;
|
|
1129
|
+
esac
|
|
1130
|
+
|
|
1131
|
+
if [[ $POWERLEVEL9K_ICON_PADDING == none && $POWERLEVEL9K_MODE != ascii ]]; then
|
|
1132
|
+
icons=("${(@kv)icons%% #}")
|
|
1133
|
+
icons[LEFT_SEGMENT_END_SEPARATOR]+=' '
|
|
1134
|
+
icons[MULTILINE_LAST_PROMPT_PREFIX]+=' '
|
|
1135
|
+
icons[VCS_TAG_ICON]+=' '
|
|
1136
|
+
icons[VCS_BOOKMARK_ICON]+=' '
|
|
1137
|
+
icons[VCS_COMMIT_ICON]+=' '
|
|
1138
|
+
icons[VCS_BRANCH_ICON]+=' '
|
|
1139
|
+
icons[VCS_REMOTE_BRANCH_ICON]+=' '
|
|
1140
|
+
fi
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
# Sadly, this is a part of public API. Its use is emphatically discouraged.
|
|
1144
|
+
function print_icon() {
|
|
1145
|
+
eval "$__p9k_intro"
|
|
1146
|
+
_p9k_init_icons
|
|
1147
|
+
local var=POWERLEVEL9K_$1
|
|
1148
|
+
if (( $+parameters[$var] )); then
|
|
1149
|
+
echo -n - ${(P)var}
|
|
1150
|
+
else
|
|
1151
|
+
echo -n - $icons[$1]
|
|
1152
|
+
fi
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
# Prints a list of configured icons.
|
|
1156
|
+
#
|
|
1157
|
+
# * $1 string - If "original", then the original icons are printed,
|
|
1158
|
+
# otherwise "print_icon" is used, which takes the users
|
|
1159
|
+
# overrides into account.
|
|
1160
|
+
function get_icon_names() {
|
|
1161
|
+
eval "$__p9k_intro"
|
|
1162
|
+
_p9k_init_icons
|
|
1163
|
+
local key
|
|
1164
|
+
for key in ${(@kon)icons}; do
|
|
1165
|
+
echo -n - "POWERLEVEL9K_$key: "
|
|
1166
|
+
print -nP "%K{red} %k"
|
|
1167
|
+
if [[ $1 == original ]]; then
|
|
1168
|
+
echo -n - $icons[$key]
|
|
1169
|
+
else
|
|
1170
|
+
print_icon $key
|
|
1171
|
+
fi
|
|
1172
|
+
print -P "%K{red} %k"
|
|
1173
|
+
done
|
|
1174
|
+
}
|