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.
Files changed (1604) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +29 -0
  3. package/bin/omd +40 -0
  4. package/lib/platform.js +80 -0
  5. package/lib/postinstall.js +40 -0
  6. package/lib/source.js +45 -0
  7. package/package.json +49 -0
  8. package/runtime/VERSION +1 -0
  9. package/runtime/bin/omd +0 -0
  10. package/runtime/build/install-antidote.sh +26 -0
  11. package/runtime/build/install-lazyvim.sh +65 -0
  12. package/runtime/components.toml +171 -0
  13. package/runtime/config/.p10k.zsh +193 -0
  14. package/runtime/config/.zsh_plugins.txt +17 -0
  15. package/runtime/config/.zshrc +53 -0
  16. package/runtime/install/bootstrap.sh +474 -0
  17. package/runtime/install/update.sh +264 -0
  18. package/runtime/modules/core/linuxbrew.sh +95 -0
  19. package/runtime/modules/core/micromamba.sh +26 -0
  20. package/runtime/modules/core/uv.sh +26 -0
  21. package/runtime/modules/core/zsh.sh +33 -0
  22. package/runtime/modules/lib/common.sh +372 -0
  23. package/runtime/modules/lib/postflight.sh +20 -0
  24. package/runtime/modules/tools/atuin.sh +26 -0
  25. package/runtime/modules/tools/bat.sh +26 -0
  26. package/runtime/modules/tools/btop.sh +26 -0
  27. package/runtime/modules/tools/fd.sh +26 -0
  28. package/runtime/modules/tools/fzf.sh +26 -0
  29. package/runtime/modules/tools/git.sh +26 -0
  30. package/runtime/modules/tools/jq.sh +26 -0
  31. package/runtime/modules/tools/lazyvim.sh +71 -0
  32. package/runtime/modules/tools/neovim.sh +26 -0
  33. package/runtime/modules/tools/ripgrep.sh +26 -0
  34. package/runtime/modules/tools/yazi.sh +26 -0
  35. package/runtime/modules/tools/zellij.sh +26 -0
  36. package/runtime/modules/tools/zsh-config.sh +155 -0
  37. package/runtime/vendor/nvim/lazyvim-starter/.neoconf.json +15 -0
  38. package/runtime/vendor/nvim/lazyvim-starter/.oh-my-devpod-source-commit +1 -0
  39. package/runtime/vendor/nvim/lazyvim-starter/LICENSE +201 -0
  40. package/runtime/vendor/nvim/lazyvim-starter/README.md +4 -0
  41. package/runtime/vendor/nvim/lazyvim-starter/init.lua +2 -0
  42. package/runtime/vendor/nvim/lazyvim-starter/lua/config/autocmds.lua +8 -0
  43. package/runtime/vendor/nvim/lazyvim-starter/lua/config/keymaps.lua +3 -0
  44. package/runtime/vendor/nvim/lazyvim-starter/lua/config/lazy.lua +53 -0
  45. package/runtime/vendor/nvim/lazyvim-starter/lua/config/options.lua +3 -0
  46. package/runtime/vendor/nvim/lazyvim-starter/lua/plugins/example.lua +197 -0
  47. package/runtime/vendor/nvim/lazyvim-starter/stylua.toml +3 -0
  48. package/runtime/vendor/releases/antidote/v2.0.10/SHA256SUMS +1 -0
  49. package/runtime/vendor/releases/antidote/v2.0.10/antidote-v2.0.10.tar.gz +0 -0
  50. package/runtime/vendor/zsh/ohmyzsh/.devcontainer/devcontainer.json +20 -0
  51. package/runtime/vendor/zsh/ohmyzsh/.editorconfig +15 -0
  52. package/runtime/vendor/zsh/ohmyzsh/.github/CODEOWNERS +19 -0
  53. package/runtime/vendor/zsh/ohmyzsh/.github/FUNDING.yml +6 -0
  54. package/runtime/vendor/zsh/ohmyzsh/.github/INCIDENT_RESPONSE_PLAN.md +87 -0
  55. package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/bug_report.yml +68 -0
  56. package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/bug_report_omz.yml +77 -0
  57. package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/config.yml +8 -0
  58. package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/feature_request.yml +37 -0
  59. package/runtime/vendor/zsh/ohmyzsh/.github/PULL_REQUEST_TEMPLATE.md +21 -0
  60. package/runtime/vendor/zsh/ohmyzsh/.github/dependabot.yml +14 -0
  61. package/runtime/vendor/zsh/ohmyzsh/.github/dependencies.yml +56 -0
  62. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies/requirements.txt +7 -0
  63. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies/updater.py +619 -0
  64. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies.yml +43 -0
  65. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer/.vercelignore +2 -0
  66. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer/vercel.json +23 -0
  67. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer.yml +66 -0
  68. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/main.yml +43 -0
  69. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/project.yml +155 -0
  70. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/scorecard.yml +65 -0
  71. package/runtime/vendor/zsh/ohmyzsh/.prettierrc +4 -0
  72. package/runtime/vendor/zsh/ohmyzsh/CODE_OF_CONDUCT.md +76 -0
  73. package/runtime/vendor/zsh/ohmyzsh/CONTRIBUTING.md +270 -0
  74. package/runtime/vendor/zsh/ohmyzsh/LICENSE.txt +21 -0
  75. package/runtime/vendor/zsh/ohmyzsh/README.md +564 -0
  76. package/runtime/vendor/zsh/ohmyzsh/SECURITY.md +23 -0
  77. package/runtime/vendor/zsh/ohmyzsh/lib/async_prompt.zsh +145 -0
  78. package/runtime/vendor/zsh/ohmyzsh/lib/bzr.zsh +14 -0
  79. package/runtime/vendor/zsh/ohmyzsh/lib/cli.zsh +944 -0
  80. package/runtime/vendor/zsh/ohmyzsh/lib/clipboard.zsh +107 -0
  81. package/runtime/vendor/zsh/ohmyzsh/lib/compfix.zsh +44 -0
  82. package/runtime/vendor/zsh/ohmyzsh/lib/completion.zsh +78 -0
  83. package/runtime/vendor/zsh/ohmyzsh/lib/correction.zsh +10 -0
  84. package/runtime/vendor/zsh/ohmyzsh/lib/diagnostics.zsh +353 -0
  85. package/runtime/vendor/zsh/ohmyzsh/lib/directories.zsh +40 -0
  86. package/runtime/vendor/zsh/ohmyzsh/lib/functions.zsh +284 -0
  87. package/runtime/vendor/zsh/ohmyzsh/lib/git.zsh +367 -0
  88. package/runtime/vendor/zsh/ohmyzsh/lib/grep.zsh +41 -0
  89. package/runtime/vendor/zsh/ohmyzsh/lib/history.zsh +48 -0
  90. package/runtime/vendor/zsh/ohmyzsh/lib/key-bindings.zsh +145 -0
  91. package/runtime/vendor/zsh/ohmyzsh/lib/misc.zsh +38 -0
  92. package/runtime/vendor/zsh/ohmyzsh/lib/nvm.zsh +6 -0
  93. package/runtime/vendor/zsh/ohmyzsh/lib/prompt_info_functions.zsh +45 -0
  94. package/runtime/vendor/zsh/ohmyzsh/lib/spectrum.zsh +38 -0
  95. package/runtime/vendor/zsh/ohmyzsh/lib/termsupport.zsh +164 -0
  96. package/runtime/vendor/zsh/ohmyzsh/lib/tests/cli.test.zsh +169 -0
  97. package/runtime/vendor/zsh/ohmyzsh/lib/theme-and-appearance.zsh +81 -0
  98. package/runtime/vendor/zsh/ohmyzsh/lib/vcs_info.zsh +53 -0
  99. package/runtime/vendor/zsh/ohmyzsh/oh-my-zsh.sh +234 -0
  100. package/runtime/vendor/zsh/ohmyzsh/plugins/1password/1password.plugin.zsh +15 -0
  101. package/runtime/vendor/zsh/ohmyzsh/plugins/1password/README.md +40 -0
  102. package/runtime/vendor/zsh/ohmyzsh/plugins/1password/_opswd +9 -0
  103. package/runtime/vendor/zsh/ohmyzsh/plugins/1password/opswd +49 -0
  104. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/.zunit.yml +9 -0
  105. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/README.md +70 -0
  106. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/alias-finder.plugin.zsh +70 -0
  107. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_output/.gitkeep +0 -0
  108. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_support/.gitkeep +0 -0
  109. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_support/bootstrap +2 -0
  110. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/test_run.sh +107 -0
  111. package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/README.md +28 -0
  112. package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/aliases.plugin.zsh +14 -0
  113. package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/cheatsheet.py +69 -0
  114. package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/termcolor.py +168 -0
  115. package/runtime/vendor/zsh/ohmyzsh/plugins/ansible/README.md +31 -0
  116. package/runtime/vendor/zsh/ohmyzsh/plugins/ansible/ansible.plugin.zsh +28 -0
  117. package/runtime/vendor/zsh/ohmyzsh/plugins/ant/README.md +12 -0
  118. package/runtime/vendor/zsh/ohmyzsh/plugins/ant/_ant +22 -0
  119. package/runtime/vendor/zsh/ohmyzsh/plugins/ant/ant.plugin.zsh +2 -0
  120. package/runtime/vendor/zsh/ohmyzsh/plugins/apache2-macports/README.md +21 -0
  121. package/runtime/vendor/zsh/ohmyzsh/plugins/apache2-macports/apache2-macports.plugin.zsh +6 -0
  122. package/runtime/vendor/zsh/ohmyzsh/plugins/arcanist/README.md +43 -0
  123. package/runtime/vendor/zsh/ohmyzsh/plugins/arcanist/arcanist.plugin.zsh +39 -0
  124. package/runtime/vendor/zsh/ohmyzsh/plugins/archlinux/README.md +184 -0
  125. package/runtime/vendor/zsh/ohmyzsh/plugins/archlinux/archlinux.plugin.zsh +204 -0
  126. package/runtime/vendor/zsh/ohmyzsh/plugins/arduino-cli/README.md +9 -0
  127. package/runtime/vendor/zsh/ohmyzsh/plugins/arduino-cli/arduino-cli.plugin.zsh +14 -0
  128. package/runtime/vendor/zsh/ohmyzsh/plugins/argocd/README.md +20 -0
  129. package/runtime/vendor/zsh/ohmyzsh/plugins/argocd/argocd.plugin.zsh +14 -0
  130. package/runtime/vendor/zsh/ohmyzsh/plugins/asdf/README.md +48 -0
  131. package/runtime/vendor/zsh/ohmyzsh/plugins/asdf/asdf.plugin.zsh +15 -0
  132. package/runtime/vendor/zsh/ohmyzsh/plugins/autoenv/README.md +20 -0
  133. package/runtime/vendor/zsh/ohmyzsh/plugins/autoenv/autoenv.plugin.zsh +80 -0
  134. package/runtime/vendor/zsh/ohmyzsh/plugins/autojump/README.md +11 -0
  135. package/runtime/vendor/zsh/ohmyzsh/plugins/autojump/autojump.plugin.zsh +41 -0
  136. package/runtime/vendor/zsh/ohmyzsh/plugins/autopep8/README.md +8 -0
  137. package/runtime/vendor/zsh/ohmyzsh/plugins/autopep8/_autopep8 +32 -0
  138. package/runtime/vendor/zsh/ohmyzsh/plugins/aws/README.md +98 -0
  139. package/runtime/vendor/zsh/ohmyzsh/plugins/aws/aws.plugin.zsh +338 -0
  140. package/runtime/vendor/zsh/ohmyzsh/plugins/azure/README.md +49 -0
  141. package/runtime/vendor/zsh/ohmyzsh/plugins/azure/azure.plugin.zsh +60 -0
  142. package/runtime/vendor/zsh/ohmyzsh/plugins/battery/README.md +42 -0
  143. package/runtime/vendor/zsh/ohmyzsh/plugins/battery/battery.plugin.zsh +314 -0
  144. package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/README.md +29 -0
  145. package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/_bazel +341 -0
  146. package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/bazel.plugin.zsh +9 -0
  147. package/runtime/vendor/zsh/ohmyzsh/plugins/bbedit/README.md +20 -0
  148. package/runtime/vendor/zsh/ohmyzsh/plugins/bbedit/bbedit.plugin.zsh +21 -0
  149. package/runtime/vendor/zsh/ohmyzsh/plugins/bedtools/README.md +5 -0
  150. package/runtime/vendor/zsh/ohmyzsh/plugins/bedtools/_bedtools +64 -0
  151. package/runtime/vendor/zsh/ohmyzsh/plugins/bgnotify/README.md +64 -0
  152. package/runtime/vendor/zsh/ohmyzsh/plugins/bgnotify/bgnotify.plugin.zsh +144 -0
  153. package/runtime/vendor/zsh/ohmyzsh/plugins/bower/README.md +17 -0
  154. package/runtime/vendor/zsh/ohmyzsh/plugins/bower/_bower +58 -0
  155. package/runtime/vendor/zsh/ohmyzsh/plugins/bower/bower.plugin.zsh +84 -0
  156. package/runtime/vendor/zsh/ohmyzsh/plugins/branch/README.md +49 -0
  157. package/runtime/vendor/zsh/ohmyzsh/plugins/branch/branch.plugin.zsh +35 -0
  158. package/runtime/vendor/zsh/ohmyzsh/plugins/brew/README.md +68 -0
  159. package/runtime/vendor/zsh/ohmyzsh/plugins/brew/brew.plugin.zsh +85 -0
  160. package/runtime/vendor/zsh/ohmyzsh/plugins/bridgetown/README.md +26 -0
  161. package/runtime/vendor/zsh/ohmyzsh/plugins/bridgetown/bridgetown.plugin.zsh +12 -0
  162. package/runtime/vendor/zsh/ohmyzsh/plugins/buf/README.md +9 -0
  163. package/runtime/vendor/zsh/ohmyzsh/plugins/buf/buf.plugin.zsh +14 -0
  164. package/runtime/vendor/zsh/ohmyzsh/plugins/bun/README.md +20 -0
  165. package/runtime/vendor/zsh/ohmyzsh/plugins/bun/bun.plugin.zsh +14 -0
  166. package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/README.md +74 -0
  167. package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/_bundler +105 -0
  168. package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/bundler.plugin.zsh +95 -0
  169. package/runtime/vendor/zsh/ohmyzsh/plugins/cabal/README.md +9 -0
  170. package/runtime/vendor/zsh/ohmyzsh/plugins/cabal/cabal.plugin.zsh +93 -0
  171. package/runtime/vendor/zsh/ohmyzsh/plugins/cake/README.md +15 -0
  172. package/runtime/vendor/zsh/ohmyzsh/plugins/cake/cake.plugin.zsh +33 -0
  173. package/runtime/vendor/zsh/ohmyzsh/plugins/cakephp3/README.md +16 -0
  174. package/runtime/vendor/zsh/ohmyzsh/plugins/cakephp3/cakephp3.plugin.zsh +38 -0
  175. package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/README.md +14 -0
  176. package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/_capistrano +49 -0
  177. package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/capistrano.plugin.zsh +11 -0
  178. package/runtime/vendor/zsh/ohmyzsh/plugins/cask/README.md +15 -0
  179. package/runtime/vendor/zsh/ohmyzsh/plugins/cask/cask.plugin.zsh +26 -0
  180. package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/README.md +24 -0
  181. package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/catimg.plugin.zsh +19 -0
  182. package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/catimg.sh +92 -0
  183. package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/colors.png +0 -0
  184. package/runtime/vendor/zsh/ohmyzsh/plugins/celery/README.md +9 -0
  185. package/runtime/vendor/zsh/ohmyzsh/plugins/celery/_celery +129 -0
  186. package/runtime/vendor/zsh/ohmyzsh/plugins/charm/README.md +9 -0
  187. package/runtime/vendor/zsh/ohmyzsh/plugins/charm/charm.plugin.zsh +14 -0
  188. package/runtime/vendor/zsh/ohmyzsh/plugins/chezmoi/README.md +11 -0
  189. package/runtime/vendor/zsh/ohmyzsh/plugins/chezmoi/chezmoi.plugin.zsh +14 -0
  190. package/runtime/vendor/zsh/ohmyzsh/plugins/chruby/README.md +21 -0
  191. package/runtime/vendor/zsh/ohmyzsh/plugins/chruby/chruby.plugin.zsh +90 -0
  192. package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/README.md +45 -0
  193. package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/chucknorris.plugin.zsh +24 -0
  194. package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/fortunes/chucknorris +568 -0
  195. package/runtime/vendor/zsh/ohmyzsh/plugins/cloudfoundry/README.md +58 -0
  196. package/runtime/vendor/zsh/ohmyzsh/plugins/cloudfoundry/cloudfoundry.plugin.zsh +34 -0
  197. package/runtime/vendor/zsh/ohmyzsh/plugins/codeclimate/README.md +8 -0
  198. package/runtime/vendor/zsh/ohmyzsh/plugins/codeclimate/_codeclimate +82 -0
  199. package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/README.md +31 -0
  200. package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/_coffee +81 -0
  201. package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/coffee.plugin.zsh +16 -0
  202. package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/README.md +48 -0
  203. package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/colemak-less +6 -0
  204. package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/colemak.plugin.zsh +38 -0
  205. package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/README.md +32 -0
  206. package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/colored-man-pages.plugin.zsh +54 -0
  207. package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/nroff +12 -0
  208. package/runtime/vendor/zsh/ohmyzsh/plugins/colorize/README.md +56 -0
  209. package/runtime/vendor/zsh/ohmyzsh/plugins/colorize/colorize.plugin.zsh +114 -0
  210. package/runtime/vendor/zsh/ohmyzsh/plugins/command-not-found/README.md +36 -0
  211. package/runtime/vendor/zsh/ohmyzsh/plugins/command-not-found/command-not-found.plugin.zsh +76 -0
  212. package/runtime/vendor/zsh/ohmyzsh/plugins/common-aliases/README.md +130 -0
  213. package/runtime/vendor/zsh/ohmyzsh/plugins/common-aliases/common-aliases.plugin.zsh +90 -0
  214. package/runtime/vendor/zsh/ohmyzsh/plugins/compleat/README.md +9 -0
  215. package/runtime/vendor/zsh/ohmyzsh/plugins/compleat/compleat.plugin.zsh +20 -0
  216. package/runtime/vendor/zsh/ohmyzsh/plugins/composer/README.md +35 -0
  217. package/runtime/vendor/zsh/ohmyzsh/plugins/composer/composer.plugin.zsh +76 -0
  218. package/runtime/vendor/zsh/ohmyzsh/plugins/conda/README.md +37 -0
  219. package/runtime/vendor/zsh/ohmyzsh/plugins/conda/conda.plugin.zsh +23 -0
  220. package/runtime/vendor/zsh/ohmyzsh/plugins/conda-env/README.md +44 -0
  221. package/runtime/vendor/zsh/ohmyzsh/plugins/conda-env/conda-env.plugin.zsh +9 -0
  222. package/runtime/vendor/zsh/ohmyzsh/plugins/copybuffer/README.md +11 -0
  223. package/runtime/vendor/zsh/ohmyzsh/plugins/copybuffer/copybuffer.plugin.zsh +16 -0
  224. package/runtime/vendor/zsh/ohmyzsh/plugins/copyfile/README.md +11 -0
  225. package/runtime/vendor/zsh/ohmyzsh/plugins/copyfile/copyfile.plugin.zsh +19 -0
  226. package/runtime/vendor/zsh/ohmyzsh/plugins/copypath/README.md +15 -0
  227. package/runtime/vendor/zsh/ohmyzsh/plugins/copypath/copypath.plugin.zsh +15 -0
  228. package/runtime/vendor/zsh/ohmyzsh/plugins/cp/README.md +32 -0
  229. package/runtime/vendor/zsh/ohmyzsh/plugins/cp/cp.plugin.zsh +4 -0
  230. package/runtime/vendor/zsh/ohmyzsh/plugins/cpanm/README.md +9 -0
  231. package/runtime/vendor/zsh/ohmyzsh/plugins/cpanm/_cpanm +64 -0
  232. package/runtime/vendor/zsh/ohmyzsh/plugins/dash/README.md +28 -0
  233. package/runtime/vendor/zsh/ohmyzsh/plugins/dash/dash.plugin.zsh +84 -0
  234. package/runtime/vendor/zsh/ohmyzsh/plugins/dbt/README.md +27 -0
  235. package/runtime/vendor/zsh/ohmyzsh/plugins/dbt/dbt.plugin.zsh +23 -0
  236. package/runtime/vendor/zsh/ohmyzsh/plugins/debian/README.md +92 -0
  237. package/runtime/vendor/zsh/ohmyzsh/plugins/debian/debian.plugin.zsh +227 -0
  238. package/runtime/vendor/zsh/ohmyzsh/plugins/deno/README.md +20 -0
  239. package/runtime/vendor/zsh/ohmyzsh/plugins/deno/deno.plugin.zsh +28 -0
  240. package/runtime/vendor/zsh/ohmyzsh/plugins/dircycle/README.md +82 -0
  241. package/runtime/vendor/zsh/ohmyzsh/plugins/dircycle/dircycle.plugin.zsh +87 -0
  242. package/runtime/vendor/zsh/ohmyzsh/plugins/direnv/README.md +15 -0
  243. package/runtime/vendor/zsh/ohmyzsh/plugins/direnv/direnv.plugin.zsh +19 -0
  244. package/runtime/vendor/zsh/ohmyzsh/plugins/dirhistory/README.md +105 -0
  245. package/runtime/vendor/zsh/ohmyzsh/plugins/dirhistory/dirhistory.plugin.zsh +236 -0
  246. package/runtime/vendor/zsh/ohmyzsh/plugins/dirpersist/README.md +10 -0
  247. package/runtime/vendor/zsh/ohmyzsh/plugins/dirpersist/dirpersist.plugin.zsh +21 -0
  248. package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/README.md +32 -0
  249. package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/_dnf5 +570 -0
  250. package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/dnf.plugin.zsh +27 -0
  251. package/runtime/vendor/zsh/ohmyzsh/plugins/dnote/README.md +51 -0
  252. package/runtime/vendor/zsh/ohmyzsh/plugins/dnote/_dnote +39 -0
  253. package/runtime/vendor/zsh/ohmyzsh/plugins/docker/README.md +89 -0
  254. package/runtime/vendor/zsh/ohmyzsh/plugins/docker/completions/_docker +3126 -0
  255. package/runtime/vendor/zsh/ohmyzsh/plugins/docker/docker.plugin.zsh +69 -0
  256. package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/README.md +36 -0
  257. package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/_docker-compose +421 -0
  258. package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/docker-compose.plugin.zsh +27 -0
  259. package/runtime/vendor/zsh/ohmyzsh/plugins/doctl/README.md +9 -0
  260. package/runtime/vendor/zsh/ohmyzsh/plugins/doctl/doctl.plugin.zsh +17 -0
  261. package/runtime/vendor/zsh/ohmyzsh/plugins/dotenv/README.md +100 -0
  262. package/runtime/vendor/zsh/ohmyzsh/plugins/dotenv/dotenv.plugin.zsh +67 -0
  263. package/runtime/vendor/zsh/ohmyzsh/plugins/dotnet/README.md +26 -0
  264. package/runtime/vendor/zsh/ohmyzsh/plugins/dotnet/dotnet.plugin.zsh +27 -0
  265. package/runtime/vendor/zsh/ohmyzsh/plugins/droplr/README.md +19 -0
  266. package/runtime/vendor/zsh/ohmyzsh/plugins/droplr/droplr.plugin.zsh +15 -0
  267. package/runtime/vendor/zsh/ohmyzsh/plugins/drush/README.md +66 -0
  268. package/runtime/vendor/zsh/ohmyzsh/plugins/drush/drush.complete.sh +50 -0
  269. package/runtime/vendor/zsh/ohmyzsh/plugins/drush/drush.plugin.zsh +107 -0
  270. package/runtime/vendor/zsh/ohmyzsh/plugins/eecms/README.md +11 -0
  271. package/runtime/vendor/zsh/ohmyzsh/plugins/eecms/eecms.plugin.zsh +20 -0
  272. package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/README.md +30 -0
  273. package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/emacs.plugin.zsh +68 -0
  274. package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/emacsclient.sh +38 -0
  275. package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/README.md +33 -0
  276. package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/_ember-cli +189 -0
  277. package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/ember-cli.plugin.zsh +12 -0
  278. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/README.md +127 -0
  279. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji-char-definitions.zsh +7274 -0
  280. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji-data.txt +4122 -0
  281. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji.plugin.zsh +110 -0
  282. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/gemoji_db.json +21538 -0
  283. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/update_emoji.py +213 -0
  284. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji-clock/README.md +14 -0
  285. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji-clock/emoji-clock.plugin.zsh +33 -0
  286. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/README.md +39 -0
  287. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty.plugin.zsh +55 -0
  288. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_emoji_set.zsh +24 -0
  289. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_floral_set.zsh +18 -0
  290. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_love_set.zsh +34 -0
  291. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_nature_set.zsh +58 -0
  292. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_stellar_set.zsh +25 -0
  293. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_zodiac_set.zsh +29 -0
  294. package/runtime/vendor/zsh/ohmyzsh/plugins/encode64/README.md +73 -0
  295. package/runtime/vendor/zsh/ohmyzsh/plugins/encode64/encode64.plugin.zsh +27 -0
  296. package/runtime/vendor/zsh/ohmyzsh/plugins/extract/README.md +69 -0
  297. package/runtime/vendor/zsh/ohmyzsh/plugins/extract/_extract +57 -0
  298. package/runtime/vendor/zsh/ohmyzsh/plugins/extract/extract.plugin.zsh +145 -0
  299. package/runtime/vendor/zsh/ohmyzsh/plugins/eza/README.md +144 -0
  300. package/runtime/vendor/zsh/ohmyzsh/plugins/eza/eza.plugin.zsh +76 -0
  301. package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/README.md +9 -0
  302. package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/_fab +69 -0
  303. package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/fabric.plugin.zsh +0 -0
  304. package/runtime/vendor/zsh/ohmyzsh/plugins/fancy-ctrl-z/README.md +24 -0
  305. package/runtime/vendor/zsh/ohmyzsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh +12 -0
  306. package/runtime/vendor/zsh/ohmyzsh/plugins/fasd/README.md +21 -0
  307. package/runtime/vendor/zsh/ohmyzsh/plugins/fasd/fasd.plugin.zsh +16 -0
  308. package/runtime/vendor/zsh/ohmyzsh/plugins/fastfile/README.md +85 -0
  309. package/runtime/vendor/zsh/ohmyzsh/plugins/fastfile/fastfile.plugin.zsh +128 -0
  310. package/runtime/vendor/zsh/ohmyzsh/plugins/fbterm/README.md +10 -0
  311. package/runtime/vendor/zsh/ohmyzsh/plugins/fbterm/fbterm.plugin.zsh +7 -0
  312. package/runtime/vendor/zsh/ohmyzsh/plugins/firewalld/README.md +22 -0
  313. package/runtime/vendor/zsh/ohmyzsh/plugins/firewalld/firewalld.plugin.zsh +17 -0
  314. package/runtime/vendor/zsh/ohmyzsh/plugins/flutter/README.md +28 -0
  315. package/runtime/vendor/zsh/ohmyzsh/plugins/flutter/flutter.plugin.zsh +29 -0
  316. package/runtime/vendor/zsh/ohmyzsh/plugins/fluxcd/README.md +9 -0
  317. package/runtime/vendor/zsh/ohmyzsh/plugins/fluxcd/fluxcd.plugin.zsh +14 -0
  318. package/runtime/vendor/zsh/ohmyzsh/plugins/fnm/README.md +9 -0
  319. package/runtime/vendor/zsh/ohmyzsh/plugins/fnm/fnm.plugin.zsh +13 -0
  320. package/runtime/vendor/zsh/ohmyzsh/plugins/foot/README.md +35 -0
  321. package/runtime/vendor/zsh/ohmyzsh/plugins/foot/foot.plugin.zsh +10 -0
  322. package/runtime/vendor/zsh/ohmyzsh/plugins/forklift/README.md +23 -0
  323. package/runtime/vendor/zsh/ohmyzsh/plugins/forklift/forklift.plugin.zsh +128 -0
  324. package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/README.md +7 -0
  325. package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/_fossil +32 -0
  326. package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/fossil.plugin.zsh +56 -0
  327. package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/README.md +85 -0
  328. package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/_frontend +161 -0
  329. package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/frontend-search.plugin.zsh +119 -0
  330. package/runtime/vendor/zsh/ohmyzsh/plugins/fzf/README.md +52 -0
  331. package/runtime/vendor/zsh/ohmyzsh/plugins/fzf/fzf.plugin.zsh +274 -0
  332. package/runtime/vendor/zsh/ohmyzsh/plugins/gas/README.md +10 -0
  333. package/runtime/vendor/zsh/ohmyzsh/plugins/gas/_gas +39 -0
  334. package/runtime/vendor/zsh/ohmyzsh/plugins/gatsby/README.md +7 -0
  335. package/runtime/vendor/zsh/ohmyzsh/plugins/gatsby/_gatsby +24 -0
  336. package/runtime/vendor/zsh/ohmyzsh/plugins/gcloud/README.md +24 -0
  337. package/runtime/vendor/zsh/ohmyzsh/plugins/gcloud/gcloud.plugin.zsh +52 -0
  338. package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/README.md +10 -0
  339. package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/_geeknote +157 -0
  340. package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/geeknote.plugin.zsh +2 -0
  341. package/runtime/vendor/zsh/ohmyzsh/plugins/gem/README.md +17 -0
  342. package/runtime/vendor/zsh/ohmyzsh/plugins/gem/completions/_gem +72 -0
  343. package/runtime/vendor/zsh/ohmyzsh/plugins/gem/gem.plugin.zsh +32 -0
  344. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/README.md +66 -0
  345. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-apple +79 -0
  346. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-monkey +32 -0
  347. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-xkcd +68 -0
  348. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass.plugin.zsh +1 -0
  349. package/runtime/vendor/zsh/ohmyzsh/plugins/gh/README.md +23 -0
  350. package/runtime/vendor/zsh/ohmyzsh/plugins/gh/gh.plugin.zsh +14 -0
  351. package/runtime/vendor/zsh/ohmyzsh/plugins/git/README.md +275 -0
  352. package/runtime/vendor/zsh/ohmyzsh/plugins/git/git.plugin.zsh +431 -0
  353. package/runtime/vendor/zsh/ohmyzsh/plugins/git-auto-fetch/README.md +50 -0
  354. package/runtime/vendor/zsh/ohmyzsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh +65 -0
  355. package/runtime/vendor/zsh/ohmyzsh/plugins/git-commit/README.md +47 -0
  356. package/runtime/vendor/zsh/ohmyzsh/plugins/git-commit/git-commit.plugin.zsh +58 -0
  357. package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/README.md +16 -0
  358. package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/git-escape-magic +135 -0
  359. package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/git-escape-magic.plugin.zsh +9 -0
  360. package/runtime/vendor/zsh/ohmyzsh/plugins/git-extras/README.md +17 -0
  361. package/runtime/vendor/zsh/ohmyzsh/plugins/git-extras/git-extras.plugin.zsh +418 -0
  362. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/README.md +40 -0
  363. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/_git-flow +327 -0
  364. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/git-flow.plugin.zsh +32 -0
  365. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow-avh/README.md +19 -0
  366. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh +526 -0
  367. package/runtime/vendor/zsh/ohmyzsh/plugins/git-hubflow/README.md +24 -0
  368. package/runtime/vendor/zsh/ohmyzsh/plugins/git-hubflow/git-hubflow.plugin.zsh +333 -0
  369. package/runtime/vendor/zsh/ohmyzsh/plugins/git-lfs/README.md +24 -0
  370. package/runtime/vendor/zsh/ohmyzsh/plugins/git-lfs/git-lfs.plugin.zsh +17 -0
  371. package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/README.md +72 -0
  372. package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/git-prompt.plugin.zsh +113 -0
  373. package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/gitstatus.py +103 -0
  374. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/MANUAL.adoc +40 -0
  375. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/README.md +9 -0
  376. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/_git +274 -0
  377. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/git-completion.bash +3562 -0
  378. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/git-prompt.sh +594 -0
  379. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/gitfast.plugin.zsh +11 -0
  380. package/runtime/vendor/zsh/ohmyzsh/plugins/github/README.md +45 -0
  381. package/runtime/vendor/zsh/ohmyzsh/plugins/github/_hub +174 -0
  382. package/runtime/vendor/zsh/ohmyzsh/plugins/github/github.plugin.zsh +77 -0
  383. package/runtime/vendor/zsh/ohmyzsh/plugins/gitignore/README.md +17 -0
  384. package/runtime/vendor/zsh/ohmyzsh/plugins/gitignore/gitignore.plugin.zsh +21 -0
  385. package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/README.md +9 -0
  386. package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/_asadmin +1150 -0
  387. package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/glassfish.plugin.zsh +0 -0
  388. package/runtime/vendor/zsh/ohmyzsh/plugins/globalias/README.md +79 -0
  389. package/runtime/vendor/zsh/ohmyzsh/plugins/globalias/globalias.plugin.zsh +23 -0
  390. package/runtime/vendor/zsh/ohmyzsh/plugins/gnu-utils/README.md +38 -0
  391. package/runtime/vendor/zsh/ohmyzsh/plugins/gnu-utils/gnu-utils.plugin.zsh +74 -0
  392. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/README.md +41 -0
  393. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/_golang +249 -0
  394. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/golang.plugin.zsh +38 -0
  395. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/templates/package.txt +29 -0
  396. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/templates/search.txt +0 -0
  397. package/runtime/vendor/zsh/ohmyzsh/plugins/gpg-agent/README.md +14 -0
  398. package/runtime/vendor/zsh/ohmyzsh/plugins/gpg-agent/gpg-agent.plugin.zsh +17 -0
  399. package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/LICENSE +19 -0
  400. package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/README.md +30 -0
  401. package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/_gradle +503 -0
  402. package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/gradle.plugin.zsh +26 -0
  403. package/runtime/vendor/zsh/ohmyzsh/plugins/grails/README.md +16 -0
  404. package/runtime/vendor/zsh/ohmyzsh/plugins/grails/grails.plugin.zsh +60 -0
  405. package/runtime/vendor/zsh/ohmyzsh/plugins/grc/README.md +15 -0
  406. package/runtime/vendor/zsh/ohmyzsh/plugins/grc/grc.plugin.zsh +20 -0
  407. package/runtime/vendor/zsh/ohmyzsh/plugins/grunt/README.md +37 -0
  408. package/runtime/vendor/zsh/ohmyzsh/plugins/grunt/grunt.plugin.zsh +255 -0
  409. package/runtime/vendor/zsh/ohmyzsh/plugins/gulp/README.md +8 -0
  410. package/runtime/vendor/zsh/ohmyzsh/plugins/gulp/gulp.plugin.zsh +29 -0
  411. package/runtime/vendor/zsh/ohmyzsh/plugins/hanami/README.md +45 -0
  412. package/runtime/vendor/zsh/ohmyzsh/plugins/hanami/hanami.plugin.zsh +19 -0
  413. package/runtime/vendor/zsh/ohmyzsh/plugins/hasura/README.md +9 -0
  414. package/runtime/vendor/zsh/ohmyzsh/plugins/hasura/hasura.plugin.zsh +13 -0
  415. package/runtime/vendor/zsh/ohmyzsh/plugins/hcloud/README.md +143 -0
  416. package/runtime/vendor/zsh/ohmyzsh/plugins/hcloud/hcloud.plugin.zsh +129 -0
  417. package/runtime/vendor/zsh/ohmyzsh/plugins/helm/README.md +19 -0
  418. package/runtime/vendor/zsh/ohmyzsh/plugins/helm/helm.plugin.zsh +19 -0
  419. package/runtime/vendor/zsh/ohmyzsh/plugins/heroku/README.md +9 -0
  420. package/runtime/vendor/zsh/ohmyzsh/plugins/heroku/heroku.plugin.zsh +9 -0
  421. package/runtime/vendor/zsh/ohmyzsh/plugins/heroku-alias/README.md +140 -0
  422. package/runtime/vendor/zsh/ohmyzsh/plugins/heroku-alias/heroku-alias.plugin.zsh +92 -0
  423. package/runtime/vendor/zsh/ohmyzsh/plugins/history/README.md +18 -0
  424. package/runtime/vendor/zsh/ohmyzsh/plugins/history/history.plugin.zsh +4 -0
  425. package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/README.md +251 -0
  426. package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/dependencies/OMZ-README.md +15 -0
  427. package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/history-substring-search.plugin.zsh +25 -0
  428. package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/history-substring-search.zsh +846 -0
  429. package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/README.md +44 -0
  430. package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/fortunes/hitchhiker +275 -0
  431. package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/hitchhiker.plugin.zsh +28 -0
  432. package/runtime/vendor/zsh/ohmyzsh/plugins/hitokoto/README.md +15 -0
  433. package/runtime/vendor/zsh/ohmyzsh/plugins/hitokoto/hitokoto.plugin.zsh +18 -0
  434. package/runtime/vendor/zsh/ohmyzsh/plugins/homestead/README.md +9 -0
  435. package/runtime/vendor/zsh/ohmyzsh/plugins/homestead/homestead.plugin.zsh +10 -0
  436. package/runtime/vendor/zsh/ohmyzsh/plugins/httpie/README.md +14 -0
  437. package/runtime/vendor/zsh/ohmyzsh/plugins/httpie/_httpie +181 -0
  438. package/runtime/vendor/zsh/ohmyzsh/plugins/invoke/README.md +10 -0
  439. package/runtime/vendor/zsh/ohmyzsh/plugins/invoke/invoke.plugin.zsh +5 -0
  440. package/runtime/vendor/zsh/ohmyzsh/plugins/ionic/README.md +30 -0
  441. package/runtime/vendor/zsh/ohmyzsh/plugins/ionic/ionic.plugin.zsh +15 -0
  442. package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/LICENSE +22 -0
  443. package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/README.md +17 -0
  444. package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/_ipfs +791 -0
  445. package/runtime/vendor/zsh/ohmyzsh/plugins/isodate/README.md +22 -0
  446. package/runtime/vendor/zsh/ohmyzsh/plugins/isodate/isodate.plugin.zsh +7 -0
  447. package/runtime/vendor/zsh/ohmyzsh/plugins/istioctl/README.md +9 -0
  448. package/runtime/vendor/zsh/ohmyzsh/plugins/istioctl/istioctl.plugin.zsh +4 -0
  449. package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/README.md +41 -0
  450. package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/iterm2.plugin.zsh +79 -0
  451. package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/iterm2_shell_integration.zsh +178 -0
  452. package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/update +4 -0
  453. package/runtime/vendor/zsh/ohmyzsh/plugins/jake-node/README.md +9 -0
  454. package/runtime/vendor/zsh/ohmyzsh/plugins/jake-node/jake-node.plugin.zsh +14 -0
  455. package/runtime/vendor/zsh/ohmyzsh/plugins/jenv/README.md +27 -0
  456. package/runtime/vendor/zsh/ohmyzsh/plugins/jenv/jenv.plugin.zsh +36 -0
  457. package/runtime/vendor/zsh/ohmyzsh/plugins/jfrog/README.md +11 -0
  458. package/runtime/vendor/zsh/ohmyzsh/plugins/jfrog/jfrog.plugin.zsh +11 -0
  459. package/runtime/vendor/zsh/ohmyzsh/plugins/jhbuild/README.md +34 -0
  460. package/runtime/vendor/zsh/ohmyzsh/plugins/jhbuild/jhbuild.plugin.zsh +32 -0
  461. package/runtime/vendor/zsh/ohmyzsh/plugins/jira/README.md +103 -0
  462. package/runtime/vendor/zsh/ohmyzsh/plugins/jira/_jira +27 -0
  463. package/runtime/vendor/zsh/ohmyzsh/plugins/jira/jira.plugin.zsh +183 -0
  464. package/runtime/vendor/zsh/ohmyzsh/plugins/jj/README.md +127 -0
  465. package/runtime/vendor/zsh/ohmyzsh/plugins/jj/jj.plugin.zsh +71 -0
  466. package/runtime/vendor/zsh/ohmyzsh/plugins/jruby/README.md +21 -0
  467. package/runtime/vendor/zsh/ohmyzsh/plugins/jruby/jruby.plugin.zsh +4 -0
  468. package/runtime/vendor/zsh/ohmyzsh/plugins/jsontools/README.md +90 -0
  469. package/runtime/vendor/zsh/ohmyzsh/plugins/jsontools/jsontools.plugin.zsh +113 -0
  470. package/runtime/vendor/zsh/ohmyzsh/plugins/juju/README.md +132 -0
  471. package/runtime/vendor/zsh/ohmyzsh/plugins/juju/juju.plugin.zsh +202 -0
  472. package/runtime/vendor/zsh/ohmyzsh/plugins/jump/README.md +31 -0
  473. package/runtime/vendor/zsh/ohmyzsh/plugins/jump/jump.plugin.zsh +60 -0
  474. package/runtime/vendor/zsh/ohmyzsh/plugins/k9s/README.md +9 -0
  475. package/runtime/vendor/zsh/ohmyzsh/plugins/k9s/k9s.plugin.zsh +14 -0
  476. package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/README.md +16 -0
  477. package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/_kamal +691 -0
  478. package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/kamal.plugin.zsh +25 -0
  479. package/runtime/vendor/zsh/ohmyzsh/plugins/kate/README.md +20 -0
  480. package/runtime/vendor/zsh/ohmyzsh/plugins/kate/kate.plugin.zsh +9 -0
  481. package/runtime/vendor/zsh/ohmyzsh/plugins/keychain/README.md +45 -0
  482. package/runtime/vendor/zsh/ohmyzsh/plugins/keychain/keychain.plugin.zsh +40 -0
  483. package/runtime/vendor/zsh/ohmyzsh/plugins/kind/README.md +22 -0
  484. package/runtime/vendor/zsh/ohmyzsh/plugins/kind/kind.plugin.zsh +23 -0
  485. package/runtime/vendor/zsh/ohmyzsh/plugins/kitchen/README.md +9 -0
  486. package/runtime/vendor/zsh/ohmyzsh/plugins/kitchen/_kitchen +85 -0
  487. package/runtime/vendor/zsh/ohmyzsh/plugins/kitty/README.md +23 -0
  488. package/runtime/vendor/zsh/ohmyzsh/plugins/kitty/kitty.plugin.zsh +16 -0
  489. package/runtime/vendor/zsh/ohmyzsh/plugins/kn/README.md +17 -0
  490. package/runtime/vendor/zsh/ohmyzsh/plugins/kn/kn.plugin.zsh +8 -0
  491. package/runtime/vendor/zsh/ohmyzsh/plugins/knife/README.md +25 -0
  492. package/runtime/vendor/zsh/ohmyzsh/plugins/knife/_knife +257 -0
  493. package/runtime/vendor/zsh/ohmyzsh/plugins/knife_ssh/README.md +14 -0
  494. package/runtime/vendor/zsh/ohmyzsh/plugins/knife_ssh/knife_ssh.plugin.zsh +18 -0
  495. package/runtime/vendor/zsh/ohmyzsh/plugins/kompose/README.md +12 -0
  496. package/runtime/vendor/zsh/ohmyzsh/plugins/kompose/kompose.plugin.zsh +3 -0
  497. package/runtime/vendor/zsh/ohmyzsh/plugins/kops/README.md +12 -0
  498. package/runtime/vendor/zsh/ohmyzsh/plugins/kops/kops.plugin.zsh +3 -0
  499. package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/LICENSE +201 -0
  500. package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/README.md +354 -0
  501. package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/kube-ps1.plugin.zsh +440 -0
  502. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectl/README.md +145 -0
  503. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectl/kubectl.plugin.zsh +208 -0
  504. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/README.md +56 -0
  505. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/kubectx.plugin.zsh +15 -0
  506. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/prod.png +0 -0
  507. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/stage.png +0 -0
  508. package/runtime/vendor/zsh/ohmyzsh/plugins/lando/LICENSE +21 -0
  509. package/runtime/vendor/zsh/ohmyzsh/plugins/lando/README.md +56 -0
  510. package/runtime/vendor/zsh/ohmyzsh/plugins/lando/lando.plugin.zsh +52 -0
  511. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/README.md +64 -0
  512. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/_artisan +40 -0
  513. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/laravel.plugin.zsh +48 -0
  514. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel4/README.md +18 -0
  515. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel4/laravel4.plugin.zsh +20 -0
  516. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel5/README.md +18 -0
  517. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel5/laravel5.plugin.zsh +19 -0
  518. package/runtime/vendor/zsh/ohmyzsh/plugins/last-working-dir/README.md +33 -0
  519. package/runtime/vendor/zsh/ohmyzsh/plugins/last-working-dir/last-working-dir.plugin.zsh +31 -0
  520. package/runtime/vendor/zsh/ohmyzsh/plugins/lein/README.md +9 -0
  521. package/runtime/vendor/zsh/ohmyzsh/plugins/lein/_lein +69 -0
  522. package/runtime/vendor/zsh/ohmyzsh/plugins/lighthouse/README.md +29 -0
  523. package/runtime/vendor/zsh/ohmyzsh/plugins/lighthouse/lighthouse.plugin.zsh +12 -0
  524. package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/README.md +24 -0
  525. package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/localstack.plugin.zsh +37 -0
  526. package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/sqs-send-result.png +0 -0
  527. package/runtime/vendor/zsh/ohmyzsh/plugins/lol/README.md +71 -0
  528. package/runtime/vendor/zsh/ohmyzsh/plugins/lol/lol.plugin.zsh +51 -0
  529. package/runtime/vendor/zsh/ohmyzsh/plugins/lpass/README.md +13 -0
  530. package/runtime/vendor/zsh/ohmyzsh/plugins/lpass/_lpass +169 -0
  531. package/runtime/vendor/zsh/ohmyzsh/plugins/lxd/README.md +9 -0
  532. package/runtime/vendor/zsh/ohmyzsh/plugins/lxd/lxd.plugin.zsh +26 -0
  533. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/README.md +70 -0
  534. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/_security +90 -0
  535. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/macos.plugin.zsh +316 -0
  536. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/music +170 -0
  537. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/spotify +479 -0
  538. package/runtime/vendor/zsh/ohmyzsh/plugins/macports/README.md +47 -0
  539. package/runtime/vendor/zsh/ohmyzsh/plugins/macports/_port +92 -0
  540. package/runtime/vendor/zsh/ohmyzsh/plugins/macports/macports.plugin.zsh +44 -0
  541. package/runtime/vendor/zsh/ohmyzsh/plugins/magic-enter/README.md +17 -0
  542. package/runtime/vendor/zsh/ohmyzsh/plugins/magic-enter/magic-enter.plugin.zsh +42 -0
  543. package/runtime/vendor/zsh/ohmyzsh/plugins/man/README.md +13 -0
  544. package/runtime/vendor/zsh/ohmyzsh/plugins/man/man.plugin.zsh +37 -0
  545. package/runtime/vendor/zsh/ohmyzsh/plugins/marked2/README.md +13 -0
  546. package/runtime/vendor/zsh/ohmyzsh/plugins/marked2/marked2.plugin.zsh +7 -0
  547. package/runtime/vendor/zsh/ohmyzsh/plugins/marktext/README.md +17 -0
  548. package/runtime/vendor/zsh/ohmyzsh/plugins/marktext/marktext.plugin.zsh +7 -0
  549. package/runtime/vendor/zsh/ohmyzsh/plugins/mercurial/README.md +69 -0
  550. package/runtime/vendor/zsh/ohmyzsh/plugins/mercurial/mercurial.plugin.zsh +118 -0
  551. package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/README.md +46 -0
  552. package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/_meteor +67 -0
  553. package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/meteor.plugin.zsh +33 -0
  554. package/runtime/vendor/zsh/ohmyzsh/plugins/microk8s/README.md +24 -0
  555. package/runtime/vendor/zsh/ohmyzsh/plugins/microk8s/microk8s.plugin.zsh +82 -0
  556. package/runtime/vendor/zsh/ohmyzsh/plugins/minikube/README.md +9 -0
  557. package/runtime/vendor/zsh/ohmyzsh/plugins/minikube/minikube.plugin.zsh +13 -0
  558. package/runtime/vendor/zsh/ohmyzsh/plugins/mise/README.md +32 -0
  559. package/runtime/vendor/zsh/ohmyzsh/plugins/mise/mise.plugin.zsh +17 -0
  560. package/runtime/vendor/zsh/ohmyzsh/plugins/mix/README.md +20 -0
  561. package/runtime/vendor/zsh/ohmyzsh/plugins/mix/_mix +170 -0
  562. package/runtime/vendor/zsh/ohmyzsh/plugins/mix-fast/README.md +28 -0
  563. package/runtime/vendor/zsh/ohmyzsh/plugins/mix-fast/mix-fast.plugin.zsh +30 -0
  564. package/runtime/vendor/zsh/ohmyzsh/plugins/molecule/README.md +20 -0
  565. package/runtime/vendor/zsh/ohmyzsh/plugins/molecule/molecule.plugin.zsh +22 -0
  566. package/runtime/vendor/zsh/ohmyzsh/plugins/mongo-atlas/README.md +10 -0
  567. package/runtime/vendor/zsh/ohmyzsh/plugins/mongo-atlas/mongo-atlas.plugin.zsh +14 -0
  568. package/runtime/vendor/zsh/ohmyzsh/plugins/mongocli/README.md +19 -0
  569. package/runtime/vendor/zsh/ohmyzsh/plugins/mongocli/mongocli.plugin.zsh +4 -0
  570. package/runtime/vendor/zsh/ohmyzsh/plugins/mosh/README.md +9 -0
  571. package/runtime/vendor/zsh/ohmyzsh/plugins/mosh/mosh.plugin.zsh +2 -0
  572. package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/README.md +22 -0
  573. package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/_multipass +73 -0
  574. package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/multipass.plugin.zsh +7 -0
  575. package/runtime/vendor/zsh/ohmyzsh/plugins/mvn/README.md +63 -0
  576. package/runtime/vendor/zsh/ohmyzsh/plugins/mvn/mvn.plugin.zsh +352 -0
  577. package/runtime/vendor/zsh/ohmyzsh/plugins/mysql-macports/README.md +20 -0
  578. package/runtime/vendor/zsh/ohmyzsh/plugins/mysql-macports/mysql-macports.plugin.zsh +8 -0
  579. package/runtime/vendor/zsh/ohmyzsh/plugins/n98-magerun/README.md +21 -0
  580. package/runtime/vendor/zsh/ohmyzsh/plugins/n98-magerun/n98-magerun.plugin.zsh +42 -0
  581. package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/README.md +20 -0
  582. package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/_nanoc +92 -0
  583. package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/nanoc.plugin.zsh +6 -0
  584. package/runtime/vendor/zsh/ohmyzsh/plugins/nats/README.md +14 -0
  585. package/runtime/vendor/zsh/ohmyzsh/plugins/nats/nats.plugin.zsh +23 -0
  586. package/runtime/vendor/zsh/ohmyzsh/plugins/nestjs/README.md +52 -0
  587. package/runtime/vendor/zsh/ohmyzsh/plugins/nestjs/nestjs.plugin.zsh +41 -0
  588. package/runtime/vendor/zsh/ohmyzsh/plugins/ng/README.md +10 -0
  589. package/runtime/vendor/zsh/ohmyzsh/plugins/ng/_ng +56 -0
  590. package/runtime/vendor/zsh/ohmyzsh/plugins/ngrok/README.md +20 -0
  591. package/runtime/vendor/zsh/ohmyzsh/plugins/ngrok/ngrok.plugin.zsh +14 -0
  592. package/runtime/vendor/zsh/ohmyzsh/plugins/nmap/README.md +27 -0
  593. package/runtime/vendor/zsh/ohmyzsh/plugins/nmap/nmap.plugin.zsh +32 -0
  594. package/runtime/vendor/zsh/ohmyzsh/plugins/node/README.md +19 -0
  595. package/runtime/vendor/zsh/ohmyzsh/plugins/node/node.plugin.zsh +6 -0
  596. package/runtime/vendor/zsh/ohmyzsh/plugins/nodenv/README.md +20 -0
  597. package/runtime/vendor/zsh/ohmyzsh/plugins/nodenv/nodenv.plugin.zsh +43 -0
  598. package/runtime/vendor/zsh/ohmyzsh/plugins/nomad/README.md +15 -0
  599. package/runtime/vendor/zsh/ohmyzsh/plugins/nomad/_nomad +153 -0
  600. package/runtime/vendor/zsh/ohmyzsh/plugins/npm/README.md +50 -0
  601. package/runtime/vendor/zsh/ohmyzsh/plugins/npm/npm.plugin.zsh +117 -0
  602. package/runtime/vendor/zsh/ohmyzsh/plugins/nvm/README.md +60 -0
  603. package/runtime/vendor/zsh/ohmyzsh/plugins/nvm/nvm.plugin.zsh +99 -0
  604. package/runtime/vendor/zsh/ohmyzsh/plugins/oc/README.md +13 -0
  605. package/runtime/vendor/zsh/ohmyzsh/plugins/oc/oc.plugin.zsh +8 -0
  606. package/runtime/vendor/zsh/ohmyzsh/plugins/octozen/README.md +12 -0
  607. package/runtime/vendor/zsh/ohmyzsh/plugins/octozen/octozen.plugin.zsh +11 -0
  608. package/runtime/vendor/zsh/ohmyzsh/plugins/opentofu/README.md +61 -0
  609. package/runtime/vendor/zsh/ohmyzsh/plugins/opentofu/opentofu.plugin.zsh +46 -0
  610. package/runtime/vendor/zsh/ohmyzsh/plugins/operator-sdk/README.md +11 -0
  611. package/runtime/vendor/zsh/ohmyzsh/plugins/operator-sdk/operator-sdk.plugin.zsh +4 -0
  612. package/runtime/vendor/zsh/ohmyzsh/plugins/otp/README.md +22 -0
  613. package/runtime/vendor/zsh/ohmyzsh/plugins/otp/otp.plugin.zsh +45 -0
  614. package/runtime/vendor/zsh/ohmyzsh/plugins/pass/README.md +22 -0
  615. package/runtime/vendor/zsh/ohmyzsh/plugins/pass/_pass +147 -0
  616. package/runtime/vendor/zsh/ohmyzsh/plugins/paver/README.md +12 -0
  617. package/runtime/vendor/zsh/ohmyzsh/plugins/paver/paver.plugin.zsh +16 -0
  618. package/runtime/vendor/zsh/ohmyzsh/plugins/pep8/README.md +8 -0
  619. package/runtime/vendor/zsh/ohmyzsh/plugins/pep8/_pep8 +34 -0
  620. package/runtime/vendor/zsh/ohmyzsh/plugins/per-directory-history/README.md +50 -0
  621. package/runtime/vendor/zsh/ohmyzsh/plugins/per-directory-history/per-directory-history.zsh +178 -0
  622. package/runtime/vendor/zsh/ohmyzsh/plugins/percol/README.md +23 -0
  623. package/runtime/vendor/zsh/ohmyzsh/plugins/percol/percol.plugin.zsh +25 -0
  624. package/runtime/vendor/zsh/ohmyzsh/plugins/perl/README.md +43 -0
  625. package/runtime/vendor/zsh/ohmyzsh/plugins/perl/perl.plugin.zsh +65 -0
  626. package/runtime/vendor/zsh/ohmyzsh/plugins/perms/README.md +25 -0
  627. package/runtime/vendor/zsh/ohmyzsh/plugins/perms/perms.plugin.zsh +87 -0
  628. package/runtime/vendor/zsh/ohmyzsh/plugins/phing/README.md +9 -0
  629. package/runtime/vendor/zsh/ohmyzsh/plugins/phing/phing.plugin.zsh +7 -0
  630. package/runtime/vendor/zsh/ohmyzsh/plugins/pip/README.md +36 -0
  631. package/runtime/vendor/zsh/ohmyzsh/plugins/pip/_pip +100 -0
  632. package/runtime/vendor/zsh/ohmyzsh/plugins/pip/pip.plugin.zsh +135 -0
  633. package/runtime/vendor/zsh/ohmyzsh/plugins/pipenv/README.md +40 -0
  634. package/runtime/vendor/zsh/ohmyzsh/plugins/pipenv/pipenv.plugin.zsh +57 -0
  635. package/runtime/vendor/zsh/ohmyzsh/plugins/pj/README.md +45 -0
  636. package/runtime/vendor/zsh/ohmyzsh/plugins/pj/pj.plugin.zsh +34 -0
  637. package/runtime/vendor/zsh/ohmyzsh/plugins/please/README.md +26 -0
  638. package/runtime/vendor/zsh/ohmyzsh/plugins/please/please.plugin.zsh +7 -0
  639. package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/README.md +19 -0
  640. package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/_pm2 +374 -0
  641. package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/pm2.plugin.zsh +6 -0
  642. package/runtime/vendor/zsh/ohmyzsh/plugins/pod/README.md +10 -0
  643. package/runtime/vendor/zsh/ohmyzsh/plugins/pod/_pod +682 -0
  644. package/runtime/vendor/zsh/ohmyzsh/plugins/podman/README.md +47 -0
  645. package/runtime/vendor/zsh/ohmyzsh/plugins/podman/podman.plugin.zsh +47 -0
  646. package/runtime/vendor/zsh/ohmyzsh/plugins/poetry/README.md +42 -0
  647. package/runtime/vendor/zsh/ohmyzsh/plugins/poetry/poetry.plugin.zsh +42 -0
  648. package/runtime/vendor/zsh/ohmyzsh/plugins/poetry-env/README.md +10 -0
  649. package/runtime/vendor/zsh/ohmyzsh/plugins/poetry-env/poetry-env.plugin.zsh +27 -0
  650. package/runtime/vendor/zsh/ohmyzsh/plugins/postgres/README.md +22 -0
  651. package/runtime/vendor/zsh/ohmyzsh/plugins/postgres/postgres.plugin.zsh +13 -0
  652. package/runtime/vendor/zsh/ohmyzsh/plugins/pow/README.md +21 -0
  653. package/runtime/vendor/zsh/ohmyzsh/plugins/pow/pow.plugin.zsh +85 -0
  654. package/runtime/vendor/zsh/ohmyzsh/plugins/powder/README.md +8 -0
  655. package/runtime/vendor/zsh/ohmyzsh/plugins/powder/_powder +4 -0
  656. package/runtime/vendor/zsh/ohmyzsh/plugins/powify/README.md +10 -0
  657. package/runtime/vendor/zsh/ohmyzsh/plugins/powify/_powify +55 -0
  658. package/runtime/vendor/zsh/ohmyzsh/plugins/pre-commit/README.md +22 -0
  659. package/runtime/vendor/zsh/ohmyzsh/plugins/pre-commit/pre-commit.plugin.zsh +17 -0
  660. package/runtime/vendor/zsh/ohmyzsh/plugins/procs/README.md +9 -0
  661. package/runtime/vendor/zsh/ohmyzsh/plugins/procs/procs.plugin.zsh +21 -0
  662. package/runtime/vendor/zsh/ohmyzsh/plugins/profiles/README.md +25 -0
  663. package/runtime/vendor/zsh/ohmyzsh/plugins/profiles/profiles.plugin.zsh +12 -0
  664. package/runtime/vendor/zsh/ohmyzsh/plugins/pulumi/README.md +41 -0
  665. package/runtime/vendor/zsh/ohmyzsh/plugins/pulumi/pulumi.plugin.zsh +28 -0
  666. package/runtime/vendor/zsh/ohmyzsh/plugins/pyenv/README.md +40 -0
  667. package/runtime/vendor/zsh/ohmyzsh/plugins/pyenv/pyenv.plugin.zsh +108 -0
  668. package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/README.md +16 -0
  669. package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/_pylint +31 -0
  670. package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/pylint.plugin.zsh +1 -0
  671. package/runtime/vendor/zsh/ohmyzsh/plugins/python/README.md +68 -0
  672. package/runtime/vendor/zsh/ohmyzsh/plugins/python/python.plugin.zsh +122 -0
  673. package/runtime/vendor/zsh/ohmyzsh/plugins/qodana/README.md +20 -0
  674. package/runtime/vendor/zsh/ohmyzsh/plugins/qodana/qodana.plugin.zsh +14 -0
  675. package/runtime/vendor/zsh/ohmyzsh/plugins/qrcode/README.md +8 -0
  676. package/runtime/vendor/zsh/ohmyzsh/plugins/qrcode/qrcode.plugin.zsh +17 -0
  677. package/runtime/vendor/zsh/ohmyzsh/plugins/rails/README.md +122 -0
  678. package/runtime/vendor/zsh/ohmyzsh/plugins/rails/_rails +538 -0
  679. package/runtime/vendor/zsh/ohmyzsh/plugins/rails/rails.plugin.zsh +120 -0
  680. package/runtime/vendor/zsh/ohmyzsh/plugins/rake/README.md +41 -0
  681. package/runtime/vendor/zsh/ohmyzsh/plugins/rake/rake.plugin.zsh +9 -0
  682. package/runtime/vendor/zsh/ohmyzsh/plugins/rake-fast/README.md +35 -0
  683. package/runtime/vendor/zsh/ohmyzsh/plugins/rake-fast/rake-fast.plugin.zsh +79 -0
  684. package/runtime/vendor/zsh/ohmyzsh/plugins/rand-quote/README.md +15 -0
  685. package/runtime/vendor/zsh/ohmyzsh/plugins/rand-quote/rand-quote.plugin.zsh +23 -0
  686. package/runtime/vendor/zsh/ohmyzsh/plugins/rbenv/README.md +26 -0
  687. package/runtime/vendor/zsh/ohmyzsh/plugins/rbenv/rbenv.plugin.zsh +68 -0
  688. package/runtime/vendor/zsh/ohmyzsh/plugins/rbw/README.md +22 -0
  689. package/runtime/vendor/zsh/ohmyzsh/plugins/rbw/rbw.plugin.zsh +58 -0
  690. package/runtime/vendor/zsh/ohmyzsh/plugins/rclone/README.md +9 -0
  691. package/runtime/vendor/zsh/ohmyzsh/plugins/rclone/rclone.plugin.zsh +14 -0
  692. package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/README.md +92 -0
  693. package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/_react-native +32 -0
  694. package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/react-native.plugin.zsh +79 -0
  695. package/runtime/vendor/zsh/ohmyzsh/plugins/rebar/README.md +9 -0
  696. package/runtime/vendor/zsh/ohmyzsh/plugins/rebar/_rebar +79 -0
  697. package/runtime/vendor/zsh/ohmyzsh/plugins/redis-cli/README.md +15 -0
  698. package/runtime/vendor/zsh/ohmyzsh/plugins/redis-cli/_redis-cli +142 -0
  699. package/runtime/vendor/zsh/ohmyzsh/plugins/repo/README.md +25 -0
  700. package/runtime/vendor/zsh/ohmyzsh/plugins/repo/_repo +281 -0
  701. package/runtime/vendor/zsh/ohmyzsh/plugins/repo/repo.plugin.zsh +10 -0
  702. package/runtime/vendor/zsh/ohmyzsh/plugins/ros/README.md +10 -0
  703. package/runtime/vendor/zsh/ohmyzsh/plugins/ros/_ros +64 -0
  704. package/runtime/vendor/zsh/ohmyzsh/plugins/rsync/README.md +26 -0
  705. package/runtime/vendor/zsh/ohmyzsh/plugins/rsync/rsync.plugin.zsh +4 -0
  706. package/runtime/vendor/zsh/ohmyzsh/plugins/ruby/README.md +33 -0
  707. package/runtime/vendor/zsh/ohmyzsh/plugins/ruby/ruby.plugin.zsh +26 -0
  708. package/runtime/vendor/zsh/ohmyzsh/plugins/rust/README.md +9 -0
  709. package/runtime/vendor/zsh/ohmyzsh/plugins/rust/_rustc +228 -0
  710. package/runtime/vendor/zsh/ohmyzsh/plugins/rust/rust.plugin.zsh +26 -0
  711. package/runtime/vendor/zsh/ohmyzsh/plugins/rvm/README.md +37 -0
  712. package/runtime/vendor/zsh/ohmyzsh/plugins/rvm/rvm.plugin.zsh +56 -0
  713. package/runtime/vendor/zsh/ohmyzsh/plugins/safe-paste/README.md +9 -0
  714. package/runtime/vendor/zsh/ohmyzsh/plugins/safe-paste/safe-paste.plugin.zsh +101 -0
  715. package/runtime/vendor/zsh/ohmyzsh/plugins/salt/README.md +5 -0
  716. package/runtime/vendor/zsh/ohmyzsh/plugins/salt/_salt +279 -0
  717. package/runtime/vendor/zsh/ohmyzsh/plugins/samtools/README.md +5 -0
  718. package/runtime/vendor/zsh/ohmyzsh/plugins/samtools/_samtools +40 -0
  719. package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/README.md +32 -0
  720. package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/_sbt +56 -0
  721. package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/sbt.plugin.zsh +25 -0
  722. package/runtime/vendor/zsh/ohmyzsh/plugins/scala/README.md +16 -0
  723. package/runtime/vendor/zsh/ohmyzsh/plugins/scala/_scala +249 -0
  724. package/runtime/vendor/zsh/ohmyzsh/plugins/scd/README.md +159 -0
  725. package/runtime/vendor/zsh/ohmyzsh/plugins/scd/_scd +60 -0
  726. package/runtime/vendor/zsh/ohmyzsh/plugins/scd/scd +533 -0
  727. package/runtime/vendor/zsh/ohmyzsh/plugins/scd/scd.plugin.zsh +17 -0
  728. package/runtime/vendor/zsh/ohmyzsh/plugins/screen/README.md +10 -0
  729. package/runtime/vendor/zsh/ohmyzsh/plugins/screen/screen.plugin.zsh +58 -0
  730. package/runtime/vendor/zsh/ohmyzsh/plugins/scw/README.md +9 -0
  731. package/runtime/vendor/zsh/ohmyzsh/plugins/scw/scw.plugin.zsh +14 -0
  732. package/runtime/vendor/zsh/ohmyzsh/plugins/sdk/README.md +14 -0
  733. package/runtime/vendor/zsh/ohmyzsh/plugins/sdk/sdk.plugin.zsh +58 -0
  734. package/runtime/vendor/zsh/ohmyzsh/plugins/sfdx/README.md +11 -0
  735. package/runtime/vendor/zsh/ohmyzsh/plugins/sfdx/_sfdx +1110 -0
  736. package/runtime/vendor/zsh/ohmyzsh/plugins/sfffe/README.md +17 -0
  737. package/runtime/vendor/zsh/ohmyzsh/plugins/sfffe/sfffe.plugin.zsh +28 -0
  738. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/.editorconfig +3 -0
  739. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/README.md +67 -0
  740. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/proxy.py +91 -0
  741. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/shell-proxy.plugin.zsh +44 -0
  742. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/ssh-agent.py +16 -0
  743. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/ssh-proxy.py +37 -0
  744. package/runtime/vendor/zsh/ohmyzsh/plugins/shrink-path/README.md +116 -0
  745. package/runtime/vendor/zsh/ohmyzsh/plugins/shrink-path/shrink-path.plugin.zsh +197 -0
  746. package/runtime/vendor/zsh/ohmyzsh/plugins/sigstore/README.md +13 -0
  747. package/runtime/vendor/zsh/ohmyzsh/plugins/sigstore/sigstore.plugin.zsh +22 -0
  748. package/runtime/vendor/zsh/ohmyzsh/plugins/singlechar/README.md +118 -0
  749. package/runtime/vendor/zsh/ohmyzsh/plugins/singlechar/singlechar.plugin.zsh +123 -0
  750. package/runtime/vendor/zsh/ohmyzsh/plugins/skaffold/README.md +9 -0
  751. package/runtime/vendor/zsh/ohmyzsh/plugins/skaffold/skaffold.plugin.zsh +14 -0
  752. package/runtime/vendor/zsh/ohmyzsh/plugins/snap/README.md +18 -0
  753. package/runtime/vendor/zsh/ohmyzsh/plugins/snap/snap.plugin.zsh +10 -0
  754. package/runtime/vendor/zsh/ohmyzsh/plugins/spackenv/README.md +17 -0
  755. package/runtime/vendor/zsh/ohmyzsh/plugins/spackenv/spackenv.plugin.zsh +5 -0
  756. package/runtime/vendor/zsh/ohmyzsh/plugins/spring/README.md +21 -0
  757. package/runtime/vendor/zsh/ohmyzsh/plugins/spring/_spring +29 -0
  758. package/runtime/vendor/zsh/ohmyzsh/plugins/sprunge/README.md +38 -0
  759. package/runtime/vendor/zsh/ohmyzsh/plugins/sprunge/sprunge.plugin.zsh +52 -0
  760. package/runtime/vendor/zsh/ohmyzsh/plugins/ssh/README.md +16 -0
  761. package/runtime/vendor/zsh/ohmyzsh/plugins/ssh/ssh.plugin.zsh +53 -0
  762. package/runtime/vendor/zsh/ohmyzsh/plugins/ssh-agent/README.md +133 -0
  763. package/runtime/vendor/zsh/ohmyzsh/plugins/ssh-agent/ssh-agent.plugin.zsh +119 -0
  764. package/runtime/vendor/zsh/ohmyzsh/plugins/stack/README.md +9 -0
  765. package/runtime/vendor/zsh/ohmyzsh/plugins/stack/stack.plugin.zsh +4 -0
  766. package/runtime/vendor/zsh/ohmyzsh/plugins/starship/README.md +21 -0
  767. package/runtime/vendor/zsh/ohmyzsh/plugins/starship/starship.plugin.zsh +8 -0
  768. package/runtime/vendor/zsh/ohmyzsh/plugins/stripe/README.md +9 -0
  769. package/runtime/vendor/zsh/ohmyzsh/plugins/stripe/stripe.plugin.zsh +13 -0
  770. package/runtime/vendor/zsh/ohmyzsh/plugins/sublime/README.md +37 -0
  771. package/runtime/vendor/zsh/ohmyzsh/plugins/sublime/sublime.plugin.zsh +124 -0
  772. package/runtime/vendor/zsh/ohmyzsh/plugins/sublime-merge/README.md +17 -0
  773. package/runtime/vendor/zsh/ohmyzsh/plugins/sublime-merge/sublime-merge.plugin.zsh +55 -0
  774. package/runtime/vendor/zsh/ohmyzsh/plugins/sudo/README.md +75 -0
  775. package/runtime/vendor/zsh/ohmyzsh/plugins/sudo/sudo.plugin.zsh +108 -0
  776. package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/README.md +13 -0
  777. package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/_supervisorctl +143 -0
  778. package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/_supervisord +33 -0
  779. package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/supervisor.plugin.zsh +14 -0
  780. package/runtime/vendor/zsh/ohmyzsh/plugins/suse/README.md +98 -0
  781. package/runtime/vendor/zsh/ohmyzsh/plugins/suse/suse.plugin.zsh +59 -0
  782. package/runtime/vendor/zsh/ohmyzsh/plugins/svcat/README.md +9 -0
  783. package/runtime/vendor/zsh/ohmyzsh/plugins/svcat/svcat.plugin.zsh +6 -0
  784. package/runtime/vendor/zsh/ohmyzsh/plugins/svn/README.md +67 -0
  785. package/runtime/vendor/zsh/ohmyzsh/plugins/svn/svn.plugin.zsh +89 -0
  786. package/runtime/vendor/zsh/ohmyzsh/plugins/svn-fast-info/README.md +56 -0
  787. package/runtime/vendor/zsh/ohmyzsh/plugins/svn-fast-info/svn-fast-info.plugin.zsh +74 -0
  788. package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/README.md +20 -0
  789. package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/_swift +844 -0
  790. package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/swiftpm.plugin.zsh +8 -0
  791. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony/README.md +9 -0
  792. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony/symfony.plugin.zsh +13 -0
  793. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony2/README.md +28 -0
  794. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony2/symfony2.plugin.zsh +34 -0
  795. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony6/README.md +9 -0
  796. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony6/symfony6.plugin.zsh +82 -0
  797. package/runtime/vendor/zsh/ohmyzsh/plugins/systemadmin/README.md +52 -0
  798. package/runtime/vendor/zsh/ohmyzsh/plugins/systemadmin/systemadmin.plugin.zsh +188 -0
  799. package/runtime/vendor/zsh/ohmyzsh/plugins/systemd/README.md +98 -0
  800. package/runtime/vendor/zsh/ohmyzsh/plugins/systemd/systemd.plugin.zsh +121 -0
  801. package/runtime/vendor/zsh/ohmyzsh/plugins/tailscale/README.md +11 -0
  802. package/runtime/vendor/zsh/ohmyzsh/plugins/tailscale/tailscale.plugin.zsh +25 -0
  803. package/runtime/vendor/zsh/ohmyzsh/plugins/task/README.md +9 -0
  804. package/runtime/vendor/zsh/ohmyzsh/plugins/task/task.plugin.zsh +14 -0
  805. package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/README.md +18 -0
  806. package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/_task +285 -0
  807. package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/taskwarrior.plugin.zsh +7 -0
  808. package/runtime/vendor/zsh/ohmyzsh/plugins/term_tab/README.md +18 -0
  809. package/runtime/vendor/zsh/ohmyzsh/plugins/term_tab/term_tab.plugin.zsh +42 -0
  810. package/runtime/vendor/zsh/ohmyzsh/plugins/terminitor/README.md +9 -0
  811. package/runtime/vendor/zsh/ohmyzsh/plugins/terminitor/_terminitor +38 -0
  812. package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/README.md +61 -0
  813. package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/_terraform +545 -0
  814. package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/terraform.plugin.zsh +40 -0
  815. package/runtime/vendor/zsh/ohmyzsh/plugins/textastic/README.md +15 -0
  816. package/runtime/vendor/zsh/ohmyzsh/plugins/textastic/textastic.plugin.zsh +17 -0
  817. package/runtime/vendor/zsh/ohmyzsh/plugins/textmate/README.md +17 -0
  818. package/runtime/vendor/zsh/ohmyzsh/plugins/textmate/textmate.plugin.zsh +14 -0
  819. package/runtime/vendor/zsh/ohmyzsh/plugins/thefuck/README.md +13 -0
  820. package/runtime/vendor/zsh/ohmyzsh/plugins/thefuck/thefuck.plugin.zsh +21 -0
  821. package/runtime/vendor/zsh/ohmyzsh/plugins/themes/README.md +18 -0
  822. package/runtime/vendor/zsh/ohmyzsh/plugins/themes/themes.plugin.zsh +35 -0
  823. package/runtime/vendor/zsh/ohmyzsh/plugins/thor/README.md +10 -0
  824. package/runtime/vendor/zsh/ohmyzsh/plugins/thor/_thor +4 -0
  825. package/runtime/vendor/zsh/ohmyzsh/plugins/tig/README.md +16 -0
  826. package/runtime/vendor/zsh/ohmyzsh/plugins/tig/tig.plugin.zsh +5 -0
  827. package/runtime/vendor/zsh/ohmyzsh/plugins/timer/README.md +18 -0
  828. package/runtime/vendor/zsh/ohmyzsh/plugins/timer/timer.plugin.zsh +38 -0
  829. package/runtime/vendor/zsh/ohmyzsh/plugins/timoni/README.md +9 -0
  830. package/runtime/vendor/zsh/ohmyzsh/plugins/timoni/timoni.plugin.zsh +14 -0
  831. package/runtime/vendor/zsh/ohmyzsh/plugins/tldr/README.md +18 -0
  832. package/runtime/vendor/zsh/ohmyzsh/plugins/tldr/tldr.plugin.zsh +19 -0
  833. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/README.md +48 -0
  834. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.extra.conf +2 -0
  835. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.only.conf +1 -0
  836. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.plugin.zsh +204 -0
  837. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux-cssh/README.md +10 -0
  838. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux-cssh/_tmux-cssh +25 -0
  839. package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/README.md +19 -0
  840. package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/_tmuxinator +23 -0
  841. package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/tmuxinator.plugin.zsh +5 -0
  842. package/runtime/vendor/zsh/ohmyzsh/plugins/toolbox/README.md +29 -0
  843. package/runtime/vendor/zsh/ohmyzsh/plugins/toolbox/toolbox.plugin.zsh +16 -0
  844. package/runtime/vendor/zsh/ohmyzsh/plugins/torrent/README.md +13 -0
  845. package/runtime/vendor/zsh/ohmyzsh/plugins/torrent/torrent.plugin.zsh +17 -0
  846. package/runtime/vendor/zsh/ohmyzsh/plugins/transfer/README.md +41 -0
  847. package/runtime/vendor/zsh/ohmyzsh/plugins/transfer/transfer.plugin.zsh +97 -0
  848. package/runtime/vendor/zsh/ohmyzsh/plugins/tt/README.MD +26 -0
  849. package/runtime/vendor/zsh/ohmyzsh/plugins/tt/tt.plugin.zsh +21 -0
  850. package/runtime/vendor/zsh/ohmyzsh/plugins/tugboat/README.md +12 -0
  851. package/runtime/vendor/zsh/ohmyzsh/plugins/tugboat/_tugboat +106 -0
  852. package/runtime/vendor/zsh/ohmyzsh/plugins/ubuntu/README.md +62 -0
  853. package/runtime/vendor/zsh/ohmyzsh/plugins/ubuntu/ubuntu.plugin.zsh +138 -0
  854. package/runtime/vendor/zsh/ohmyzsh/plugins/ufw/README.md +18 -0
  855. package/runtime/vendor/zsh/ohmyzsh/plugins/ufw/_ufw +115 -0
  856. package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/README.md +76 -0
  857. package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/_universalarchive +6 -0
  858. package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/universalarchive.plugin.zsh +70 -0
  859. package/runtime/vendor/zsh/ohmyzsh/plugins/urltools/README.md +29 -0
  860. package/runtime/vendor/zsh/ohmyzsh/plugins/urltools/urltools.plugin.zsh +42 -0
  861. package/runtime/vendor/zsh/ohmyzsh/plugins/uv/README.md +36 -0
  862. package/runtime/vendor/zsh/ohmyzsh/plugins/uv/uv.plugin.zsh +47 -0
  863. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/README.md +40 -0
  864. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/_vagrant +133 -0
  865. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/vagrant.plugin.zsh +33 -0
  866. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant-prompt/README.md +52 -0
  867. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant-prompt/vagrant-prompt.plugin.zsh +18 -0
  868. package/runtime/vendor/zsh/ohmyzsh/plugins/vault/README.md +9 -0
  869. package/runtime/vendor/zsh/ohmyzsh/plugins/vault/vault.plugin.zsh +7 -0
  870. package/runtime/vendor/zsh/ohmyzsh/plugins/vi-mode/README.md +197 -0
  871. package/runtime/vendor/zsh/ohmyzsh/plugins/vi-mode/vi-mode.plugin.zsh +174 -0
  872. package/runtime/vendor/zsh/ohmyzsh/plugins/vim-interaction/README.md +82 -0
  873. package/runtime/vendor/zsh/ohmyzsh/plugins/vim-interaction/vim-interaction.plugin.zsh +69 -0
  874. package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenv/README.md +15 -0
  875. package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenv/virtualenv.plugin.zsh +7 -0
  876. package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenvwrapper/README.md +38 -0
  877. package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh +93 -0
  878. package/runtime/vendor/zsh/ohmyzsh/plugins/volta/README.md +11 -0
  879. package/runtime/vendor/zsh/ohmyzsh/plugins/volta/volta.plugin.zsh +14 -0
  880. package/runtime/vendor/zsh/ohmyzsh/plugins/vscode/README.md +88 -0
  881. package/runtime/vendor/zsh/ohmyzsh/plugins/vscode/vscode.plugin.zsh +52 -0
  882. package/runtime/vendor/zsh/ohmyzsh/plugins/vundle/README.md +19 -0
  883. package/runtime/vendor/zsh/ohmyzsh/plugins/vundle/vundle.plugin.zsh +27 -0
  884. package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/README.md +43 -0
  885. package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/_wake +4 -0
  886. package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/wakeonlan.plugin.zsh +14 -0
  887. package/runtime/vendor/zsh/ohmyzsh/plugins/watson/README.md +9 -0
  888. package/runtime/vendor/zsh/ohmyzsh/plugins/watson/_watson +34 -0
  889. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/LICENSE +21 -0
  890. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/README.md +297 -0
  891. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/_wd.sh +106 -0
  892. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/wd.plugin.zsh +20 -0
  893. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/wd.sh +658 -0
  894. package/runtime/vendor/zsh/ohmyzsh/plugins/web-search/README.md +92 -0
  895. package/runtime/vendor/zsh/ohmyzsh/plugins/web-search/web-search.plugin.zsh +119 -0
  896. package/runtime/vendor/zsh/ohmyzsh/plugins/wp-cli/README.md +109 -0
  897. package/runtime/vendor/zsh/ohmyzsh/plugins/wp-cli/wp-cli.plugin.zsh +123 -0
  898. package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/README.md +86 -0
  899. package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/_xcselv +19 -0
  900. package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/xcode.plugin.zsh +208 -0
  901. package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/README.md +74 -0
  902. package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/_yarn +502 -0
  903. package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/yarn.plugin.zsh +64 -0
  904. package/runtime/vendor/zsh/ohmyzsh/plugins/yii/README.md +15 -0
  905. package/runtime/vendor/zsh/ohmyzsh/plugins/yii/yii.plugin.zsh +17 -0
  906. package/runtime/vendor/zsh/ohmyzsh/plugins/yii2/README.md +7 -0
  907. package/runtime/vendor/zsh/ohmyzsh/plugins/yii2/yii2.plugin.zsh +29 -0
  908. package/runtime/vendor/zsh/ohmyzsh/plugins/yum/README.md +27 -0
  909. package/runtime/vendor/zsh/ohmyzsh/plugins/yum/yum.plugin.zsh +16 -0
  910. package/runtime/vendor/zsh/ohmyzsh/plugins/z/LICENSE +21 -0
  911. package/runtime/vendor/zsh/ohmyzsh/plugins/z/MANUAL.md +365 -0
  912. package/runtime/vendor/zsh/ohmyzsh/plugins/z/README.md +24 -0
  913. package/runtime/vendor/zsh/ohmyzsh/plugins/z/_z +82 -0
  914. package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/demo.gif +0 -0
  915. package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/mit_license.svg +1 -0
  916. package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/zsh_4.3.11_plus.svg +1 -0
  917. package/runtime/vendor/zsh/ohmyzsh/plugins/z/z.plugin.zsh +1022 -0
  918. package/runtime/vendor/zsh/ohmyzsh/plugins/zbell/README.md +33 -0
  919. package/runtime/vendor/zsh/ohmyzsh/plugins/zbell/zbell.plugin.zsh +96 -0
  920. package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/README.md +50 -0
  921. package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/_zeus +98 -0
  922. package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/zeus.plugin.zsh +70 -0
  923. package/runtime/vendor/zsh/ohmyzsh/plugins/zoxide/README.md +17 -0
  924. package/runtime/vendor/zsh/ohmyzsh/plugins/zoxide/zoxide.plugin.zsh +5 -0
  925. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/LICENSE +375 -0
  926. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/README.md +21 -0
  927. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/demo.gif +0 -0
  928. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/zsh-interactive-cd.plugin.zsh +180 -0
  929. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-aliases.conf +33 -0
  930. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-cd.conf +68 -0
  931. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-env.conf +38 -0
  932. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-functions.conf +41 -0
  933. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-history.conf +43 -0
  934. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-kill.conf +46 -0
  935. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-list.conf +55 -0
  936. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-options.conf +34 -0
  937. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-panelize.conf +34 -0
  938. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/LICENSE +700 -0
  939. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/Makefile +35 -0
  940. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/NEWS +17 -0
  941. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/README.md +259 -0
  942. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/_n-kill +41 -0
  943. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/generate_single_file +35 -0
  944. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/img/n-history2.png +0 -0
  945. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/install.sh +70 -0
  946. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/n-preview +224 -0
  947. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/znt-tmux.zsh +50 -0
  948. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-aliases +47 -0
  949. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-cd +71 -0
  950. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-env +47 -0
  951. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-functions +54 -0
  952. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-help +135 -0
  953. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-history +371 -0
  954. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-kill +96 -0
  955. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list +517 -0
  956. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list-draw +133 -0
  957. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list-input +377 -0
  958. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-options +84 -0
  959. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-panelize +68 -0
  960. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-cd-widget +8 -0
  961. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-history-widget +22 -0
  962. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-kill-widget +8 -0
  963. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-usetty-wrapper +40 -0
  964. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh +77 -0
  965. package/runtime/vendor/zsh/ohmyzsh/templates/minimal.zshrc +5 -0
  966. package/runtime/vendor/zsh/ohmyzsh/templates/zshrc.zsh-template +104 -0
  967. package/runtime/vendor/zsh/ohmyzsh/themes/3den.zsh-theme +7 -0
  968. package/runtime/vendor/zsh/ohmyzsh/themes/Soliah.zsh-theme +85 -0
  969. package/runtime/vendor/zsh/ohmyzsh/themes/adben.zsh-theme +118 -0
  970. package/runtime/vendor/zsh/ohmyzsh/themes/af-magic.zsh-theme +49 -0
  971. package/runtime/vendor/zsh/ohmyzsh/themes/afowler.zsh-theme +10 -0
  972. package/runtime/vendor/zsh/ohmyzsh/themes/agnoster.zsh-theme +377 -0
  973. package/runtime/vendor/zsh/ohmyzsh/themes/alanpeabody.zsh-theme +24 -0
  974. package/runtime/vendor/zsh/ohmyzsh/themes/amuse.zsh-theme +24 -0
  975. package/runtime/vendor/zsh/ohmyzsh/themes/apple.zsh-theme +24 -0
  976. package/runtime/vendor/zsh/ohmyzsh/themes/arrow.zsh-theme +14 -0
  977. package/runtime/vendor/zsh/ohmyzsh/themes/aussiegeek.zsh-theme +8 -0
  978. package/runtime/vendor/zsh/ohmyzsh/themes/avit.zsh-theme +90 -0
  979. package/runtime/vendor/zsh/ohmyzsh/themes/awesomepanda.zsh-theme +16 -0
  980. package/runtime/vendor/zsh/ohmyzsh/themes/bira.zsh-theme +38 -0
  981. package/runtime/vendor/zsh/ohmyzsh/themes/blinks.zsh-theme +30 -0
  982. package/runtime/vendor/zsh/ohmyzsh/themes/bureau.zsh-theme +133 -0
  983. package/runtime/vendor/zsh/ohmyzsh/themes/candy-kingdom.zsh-theme +34 -0
  984. package/runtime/vendor/zsh/ohmyzsh/themes/candy.zsh-theme +7 -0
  985. package/runtime/vendor/zsh/ohmyzsh/themes/clean.zsh-theme +14 -0
  986. package/runtime/vendor/zsh/ohmyzsh/themes/cloud.zsh-theme +10 -0
  987. package/runtime/vendor/zsh/ohmyzsh/themes/crcandy.zsh-theme +8 -0
  988. package/runtime/vendor/zsh/ohmyzsh/themes/crunch.zsh-theme +39 -0
  989. package/runtime/vendor/zsh/ohmyzsh/themes/cypher.zsh-theme +4 -0
  990. package/runtime/vendor/zsh/ohmyzsh/themes/dallas.zsh-theme +27 -0
  991. package/runtime/vendor/zsh/ohmyzsh/themes/darkblood.zsh-theme +9 -0
  992. package/runtime/vendor/zsh/ohmyzsh/themes/daveverwer.zsh-theme +7 -0
  993. package/runtime/vendor/zsh/ohmyzsh/themes/dieter.zsh-theme +56 -0
  994. package/runtime/vendor/zsh/ohmyzsh/themes/dogenpunk.zsh-theme +77 -0
  995. package/runtime/vendor/zsh/ohmyzsh/themes/dpoggi.zsh-theme +11 -0
  996. package/runtime/vendor/zsh/ohmyzsh/themes/dst.zsh-theme +16 -0
  997. package/runtime/vendor/zsh/ohmyzsh/themes/dstufft.zsh-theme +19 -0
  998. package/runtime/vendor/zsh/ohmyzsh/themes/duellj.zsh-theme +7 -0
  999. package/runtime/vendor/zsh/ohmyzsh/themes/eastwood.zsh-theme +23 -0
  1000. package/runtime/vendor/zsh/ohmyzsh/themes/edvardm.zsh-theme +6 -0
  1001. package/runtime/vendor/zsh/ohmyzsh/themes/emotty.zsh-theme +113 -0
  1002. package/runtime/vendor/zsh/ohmyzsh/themes/essembeh.zsh-theme +36 -0
  1003. package/runtime/vendor/zsh/ohmyzsh/themes/evan.zsh-theme +2 -0
  1004. package/runtime/vendor/zsh/ohmyzsh/themes/fino-time.zsh-theme +38 -0
  1005. package/runtime/vendor/zsh/ohmyzsh/themes/fino.zsh-theme +47 -0
  1006. package/runtime/vendor/zsh/ohmyzsh/themes/fishy.zsh-theme +36 -0
  1007. package/runtime/vendor/zsh/ohmyzsh/themes/flazz.zsh-theme +19 -0
  1008. package/runtime/vendor/zsh/ohmyzsh/themes/fletcherm.zsh-theme +12 -0
  1009. package/runtime/vendor/zsh/ohmyzsh/themes/fox.zsh-theme +9 -0
  1010. package/runtime/vendor/zsh/ohmyzsh/themes/frisk.zsh-theme +12 -0
  1011. package/runtime/vendor/zsh/ohmyzsh/themes/frontcube.zsh-theme +13 -0
  1012. package/runtime/vendor/zsh/ohmyzsh/themes/funky.zsh-theme +14 -0
  1013. package/runtime/vendor/zsh/ohmyzsh/themes/fwalch.zsh-theme +6 -0
  1014. package/runtime/vendor/zsh/ohmyzsh/themes/gallifrey.zsh-theme +11 -0
  1015. package/runtime/vendor/zsh/ohmyzsh/themes/gallois.zsh-theme +140 -0
  1016. package/runtime/vendor/zsh/ohmyzsh/themes/garyblessington.zsh-theme +6 -0
  1017. package/runtime/vendor/zsh/ohmyzsh/themes/gentoo.zsh-theme +30 -0
  1018. package/runtime/vendor/zsh/ohmyzsh/themes/geoffgarside.zsh-theme +5 -0
  1019. package/runtime/vendor/zsh/ohmyzsh/themes/gianu.zsh-theme +6 -0
  1020. package/runtime/vendor/zsh/ohmyzsh/themes/gnzh.zsh-theme +46 -0
  1021. package/runtime/vendor/zsh/ohmyzsh/themes/gozilla.zsh-theme +15 -0
  1022. package/runtime/vendor/zsh/ohmyzsh/themes/half-life.zsh-theme +97 -0
  1023. package/runtime/vendor/zsh/ohmyzsh/themes/humza.zsh-theme +26 -0
  1024. package/runtime/vendor/zsh/ohmyzsh/themes/imajes.zsh-theme +5 -0
  1025. package/runtime/vendor/zsh/ohmyzsh/themes/intheloop.zsh-theme +23 -0
  1026. package/runtime/vendor/zsh/ohmyzsh/themes/itchy.zsh-theme +18 -0
  1027. package/runtime/vendor/zsh/ohmyzsh/themes/jaischeema.zsh-theme +12 -0
  1028. package/runtime/vendor/zsh/ohmyzsh/themes/jbergantine.zsh-theme +6 -0
  1029. package/runtime/vendor/zsh/ohmyzsh/themes/jispwoso.zsh-theme +10 -0
  1030. package/runtime/vendor/zsh/ohmyzsh/themes/jnrowe.zsh-theme +37 -0
  1031. package/runtime/vendor/zsh/ohmyzsh/themes/jonathan.zsh-theme +126 -0
  1032. package/runtime/vendor/zsh/ohmyzsh/themes/josh.zsh-theme +43 -0
  1033. package/runtime/vendor/zsh/ohmyzsh/themes/jreese.zsh-theme +14 -0
  1034. package/runtime/vendor/zsh/ohmyzsh/themes/jtriley.zsh-theme +2 -0
  1035. package/runtime/vendor/zsh/ohmyzsh/themes/juanghurtado.zsh-theme +44 -0
  1036. package/runtime/vendor/zsh/ohmyzsh/themes/junkfood.zsh-theme +30 -0
  1037. package/runtime/vendor/zsh/ohmyzsh/themes/kafeitu.zsh-theme +6 -0
  1038. package/runtime/vendor/zsh/ohmyzsh/themes/kardan.zsh-theme +12 -0
  1039. package/runtime/vendor/zsh/ohmyzsh/themes/kennethreitz.zsh-theme +15 -0
  1040. package/runtime/vendor/zsh/ohmyzsh/themes/kiwi.zsh-theme +10 -0
  1041. package/runtime/vendor/zsh/ohmyzsh/themes/kolo.zsh-theme +24 -0
  1042. package/runtime/vendor/zsh/ohmyzsh/themes/kphoen.zsh-theme +43 -0
  1043. package/runtime/vendor/zsh/ohmyzsh/themes/lambda.zsh-theme +4 -0
  1044. package/runtime/vendor/zsh/ohmyzsh/themes/linuxonly.zsh-theme +58 -0
  1045. package/runtime/vendor/zsh/ohmyzsh/themes/lukerandall.zsh-theme +24 -0
  1046. package/runtime/vendor/zsh/ohmyzsh/themes/macovsky.zsh-theme +12 -0
  1047. package/runtime/vendor/zsh/ohmyzsh/themes/maran.zsh-theme +6 -0
  1048. package/runtime/vendor/zsh/ohmyzsh/themes/mgutz.zsh-theme +6 -0
  1049. package/runtime/vendor/zsh/ohmyzsh/themes/mh.zsh-theme +24 -0
  1050. package/runtime/vendor/zsh/ohmyzsh/themes/michelebologna.zsh-theme +78 -0
  1051. package/runtime/vendor/zsh/ohmyzsh/themes/mikeh.zsh-theme +21 -0
  1052. package/runtime/vendor/zsh/ohmyzsh/themes/miloshadzic.zsh-theme +8 -0
  1053. package/runtime/vendor/zsh/ohmyzsh/themes/minimal.zsh-theme +26 -0
  1054. package/runtime/vendor/zsh/ohmyzsh/themes/mira.zsh-theme +23 -0
  1055. package/runtime/vendor/zsh/ohmyzsh/themes/mlh.zsh-theme +105 -0
  1056. package/runtime/vendor/zsh/ohmyzsh/themes/mortalscumbag.zsh-theme +71 -0
  1057. package/runtime/vendor/zsh/ohmyzsh/themes/mrtazz.zsh-theme +7 -0
  1058. package/runtime/vendor/zsh/ohmyzsh/themes/murilasso.zsh-theme +14 -0
  1059. package/runtime/vendor/zsh/ohmyzsh/themes/muse.zsh-theme +16 -0
  1060. package/runtime/vendor/zsh/ohmyzsh/themes/nanotech.zsh-theme +7 -0
  1061. package/runtime/vendor/zsh/ohmyzsh/themes/nebirhos.zsh-theme +21 -0
  1062. package/runtime/vendor/zsh/ohmyzsh/themes/nicoulaj.zsh-theme +43 -0
  1063. package/runtime/vendor/zsh/ohmyzsh/themes/norm.zsh-theme +7 -0
  1064. package/runtime/vendor/zsh/ohmyzsh/themes/obraun.zsh-theme +10 -0
  1065. package/runtime/vendor/zsh/ohmyzsh/themes/oldgallois.zsh-theme +24 -0
  1066. package/runtime/vendor/zsh/ohmyzsh/themes/peepcode.zsh-theme +47 -0
  1067. package/runtime/vendor/zsh/ohmyzsh/themes/philips.zsh-theme +14 -0
  1068. package/runtime/vendor/zsh/ohmyzsh/themes/pmcgee.zsh-theme +16 -0
  1069. package/runtime/vendor/zsh/ohmyzsh/themes/pygmalion-virtualenv.zsh-theme +54 -0
  1070. package/runtime/vendor/zsh/ohmyzsh/themes/pygmalion.zsh-theme +12 -0
  1071. package/runtime/vendor/zsh/ohmyzsh/themes/random.zsh-theme +47 -0
  1072. package/runtime/vendor/zsh/ohmyzsh/themes/re5et.zsh-theme +15 -0
  1073. package/runtime/vendor/zsh/ohmyzsh/themes/refined.zsh-theme +108 -0
  1074. package/runtime/vendor/zsh/ohmyzsh/themes/rgm.zsh-theme +8 -0
  1075. package/runtime/vendor/zsh/ohmyzsh/themes/risto.zsh-theme +6 -0
  1076. package/runtime/vendor/zsh/ohmyzsh/themes/rixius.zsh-theme +21 -0
  1077. package/runtime/vendor/zsh/ohmyzsh/themes/rkj-repos.zsh-theme +35 -0
  1078. package/runtime/vendor/zsh/ohmyzsh/themes/rkj.zsh-theme +9 -0
  1079. package/runtime/vendor/zsh/ohmyzsh/themes/robbyrussell.zsh-theme +7 -0
  1080. package/runtime/vendor/zsh/ohmyzsh/themes/sammy.zsh-theme +6 -0
  1081. package/runtime/vendor/zsh/ohmyzsh/themes/simonoff.zsh-theme +99 -0
  1082. package/runtime/vendor/zsh/ohmyzsh/themes/simple.zsh-theme +6 -0
  1083. package/runtime/vendor/zsh/ohmyzsh/themes/skaro.zsh-theme +7 -0
  1084. package/runtime/vendor/zsh/ohmyzsh/themes/smt.zsh-theme +83 -0
  1085. package/runtime/vendor/zsh/ohmyzsh/themes/sonicradish.zsh-theme +37 -0
  1086. package/runtime/vendor/zsh/ohmyzsh/themes/sorin.zsh-theme +42 -0
  1087. package/runtime/vendor/zsh/ohmyzsh/themes/sporty_256.zsh-theme +13 -0
  1088. package/runtime/vendor/zsh/ohmyzsh/themes/steeef.zsh-theme +103 -0
  1089. package/runtime/vendor/zsh/ohmyzsh/themes/strug.zsh-theme +25 -0
  1090. package/runtime/vendor/zsh/ohmyzsh/themes/sunaku.zsh-theme +25 -0
  1091. package/runtime/vendor/zsh/ohmyzsh/themes/sunrise.zsh-theme +93 -0
  1092. package/runtime/vendor/zsh/ohmyzsh/themes/superjarin.zsh-theme +18 -0
  1093. package/runtime/vendor/zsh/ohmyzsh/themes/suvash.zsh-theme +21 -0
  1094. package/runtime/vendor/zsh/ohmyzsh/themes/takashiyoshida.zsh-theme +27 -0
  1095. package/runtime/vendor/zsh/ohmyzsh/themes/terminalparty.zsh-theme +8 -0
  1096. package/runtime/vendor/zsh/ohmyzsh/themes/theunraveler.zsh-theme +16 -0
  1097. package/runtime/vendor/zsh/ohmyzsh/themes/tjkirch.zsh-theme +15 -0
  1098. package/runtime/vendor/zsh/ohmyzsh/themes/tjkirch_mod.zsh-theme +13 -0
  1099. package/runtime/vendor/zsh/ohmyzsh/themes/tonotdo.zsh-theme +12 -0
  1100. package/runtime/vendor/zsh/ohmyzsh/themes/trapd00r.zsh-theme +132 -0
  1101. package/runtime/vendor/zsh/ohmyzsh/themes/wedisagree.zsh-theme +109 -0
  1102. package/runtime/vendor/zsh/ohmyzsh/themes/wezm+.zsh-theme +7 -0
  1103. package/runtime/vendor/zsh/ohmyzsh/themes/wezm.zsh-theme +7 -0
  1104. package/runtime/vendor/zsh/ohmyzsh/themes/wuffers.zsh-theme +5 -0
  1105. package/runtime/vendor/zsh/ohmyzsh/themes/xiong-chiamiov-plus.zsh-theme +6 -0
  1106. package/runtime/vendor/zsh/ohmyzsh/themes/xiong-chiamiov.zsh-theme +6 -0
  1107. package/runtime/vendor/zsh/ohmyzsh/themes/ys.zsh-theme +80 -0
  1108. package/runtime/vendor/zsh/ohmyzsh/themes/zhann.zsh-theme +25 -0
  1109. package/runtime/vendor/zsh/ohmyzsh/tools/changelog.sh +592 -0
  1110. package/runtime/vendor/zsh/ohmyzsh/tools/check_for_upgrade.sh +302 -0
  1111. package/runtime/vendor/zsh/ohmyzsh/tools/install.sh +579 -0
  1112. package/runtime/vendor/zsh/ohmyzsh/tools/require_tool.sh +161 -0
  1113. package/runtime/vendor/zsh/ohmyzsh/tools/theme_chooser.sh +98 -0
  1114. package/runtime/vendor/zsh/ohmyzsh/tools/uninstall.sh +41 -0
  1115. package/runtime/vendor/zsh/ohmyzsh/tools/upgrade.sh +295 -0
  1116. package/runtime/vendor/zsh/powerlevel10k/.gitattributes +5 -0
  1117. package/runtime/vendor/zsh/powerlevel10k/LICENSE +22 -0
  1118. package/runtime/vendor/zsh/powerlevel10k/Makefile +14 -0
  1119. package/runtime/vendor/zsh/powerlevel10k/README.md +2120 -0
  1120. package/runtime/vendor/zsh/powerlevel10k/config/p10k-classic.zsh +1738 -0
  1121. package/runtime/vendor/zsh/powerlevel10k/config/p10k-lean-8colors.zsh +1713 -0
  1122. package/runtime/vendor/zsh/powerlevel10k/config/p10k-lean.zsh +1713 -0
  1123. package/runtime/vendor/zsh/powerlevel10k/config/p10k-pure.zsh +193 -0
  1124. package/runtime/vendor/zsh/powerlevel10k/config/p10k-rainbow.zsh +1833 -0
  1125. package/runtime/vendor/zsh/powerlevel10k/config/p10k-robbyrussell.zsh +111 -0
  1126. package/runtime/vendor/zsh/powerlevel10k/font.md +185 -0
  1127. package/runtime/vendor/zsh/powerlevel10k/gitstatus/.clang-format +4 -0
  1128. package/runtime/vendor/zsh/powerlevel10k/gitstatus/.gitattributes +16 -0
  1129. package/runtime/vendor/zsh/powerlevel10k/gitstatus/.vscode/c_cpp_properties.json +17 -0
  1130. package/runtime/vendor/zsh/powerlevel10k/gitstatus/.vscode/settings.json +72 -0
  1131. package/runtime/vendor/zsh/powerlevel10k/gitstatus/LICENSE +674 -0
  1132. package/runtime/vendor/zsh/powerlevel10k/gitstatus/Makefile +57 -0
  1133. package/runtime/vendor/zsh/powerlevel10k/gitstatus/README.md +534 -0
  1134. package/runtime/vendor/zsh/powerlevel10k/gitstatus/build +668 -0
  1135. package/runtime/vendor/zsh/powerlevel10k/gitstatus/build.info +22 -0
  1136. package/runtime/vendor/zsh/powerlevel10k/gitstatus/deps/.gitkeep +0 -0
  1137. package/runtime/vendor/zsh/powerlevel10k/gitstatus/docs/listdir.md +330 -0
  1138. package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.plugin.sh +474 -0
  1139. package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.plugin.zsh +908 -0
  1140. package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.prompt.sh +111 -0
  1141. package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.prompt.zsh +111 -0
  1142. package/runtime/vendor/zsh/powerlevel10k/gitstatus/install +476 -0
  1143. package/runtime/vendor/zsh/powerlevel10k/gitstatus/install.info +34 -0
  1144. package/runtime/vendor/zsh/powerlevel10k/gitstatus/mbuild +406 -0
  1145. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/algorithm.h +37 -0
  1146. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/arena.cc +118 -0
  1147. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/arena.h +273 -0
  1148. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/bits.h +29 -0
  1149. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check.h +61 -0
  1150. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check_dir_mtime.cc +157 -0
  1151. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check_dir_mtime.h +31 -0
  1152. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/dir.cc +237 -0
  1153. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/dir.h +50 -0
  1154. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/git.cc +250 -0
  1155. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/git.h +115 -0
  1156. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/gitstatus.cc +219 -0
  1157. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/index.cc +456 -0
  1158. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/index.h +84 -0
  1159. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/logging.cc +139 -0
  1160. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/logging.h +124 -0
  1161. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/options.cc +362 -0
  1162. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/options.h +78 -0
  1163. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/print.h +101 -0
  1164. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo.cc +503 -0
  1165. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo.h +126 -0
  1166. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo_cache.cc +167 -0
  1167. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo_cache.h +60 -0
  1168. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/request.cc +130 -0
  1169. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/request.h +50 -0
  1170. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/response.cc +73 -0
  1171. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/response.h +50 -0
  1172. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/scope_guard.h +56 -0
  1173. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/serialization.h +28 -0
  1174. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/stat.h +23 -0
  1175. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/string_cmp.h +151 -0
  1176. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/string_view.h +77 -0
  1177. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/strings.cc +71 -0
  1178. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/strings.h +37 -0
  1179. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tag_db.cc +332 -0
  1180. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tag_db.h +79 -0
  1181. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/thread_pool.cc +87 -0
  1182. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/thread_pool.h +74 -0
  1183. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/time.h +14 -0
  1184. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/timer.cc +72 -0
  1185. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/timer.h +36 -0
  1186. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tribool.h +27 -0
  1187. package/runtime/vendor/zsh/powerlevel10k/gitstatus/usrbin/.gitkeep +0 -0
  1188. package/runtime/vendor/zsh/powerlevel10k/internal/configure.zsh +84 -0
  1189. package/runtime/vendor/zsh/powerlevel10k/internal/icons.zsh +1174 -0
  1190. package/runtime/vendor/zsh/powerlevel10k/internal/notes.md +197 -0
  1191. package/runtime/vendor/zsh/powerlevel10k/internal/p10k.zsh +9524 -0
  1192. package/runtime/vendor/zsh/powerlevel10k/internal/parser.zsh +382 -0
  1193. package/runtime/vendor/zsh/powerlevel10k/internal/wizard.zsh +2257 -0
  1194. package/runtime/vendor/zsh/powerlevel10k/internal/worker.zsh +219 -0
  1195. package/runtime/vendor/zsh/powerlevel10k/powerlevel10k.png +0 -0
  1196. package/runtime/vendor/zsh/powerlevel10k/powerlevel10k.zsh-theme +83 -0
  1197. package/runtime/vendor/zsh/powerlevel10k/powerlevel9k.zsh-theme +1 -0
  1198. package/runtime/vendor/zsh/powerlevel10k/prompt_powerlevel10k_setup +1 -0
  1199. package/runtime/vendor/zsh/powerlevel10k/prompt_powerlevel9k_setup +1 -0
  1200. package/runtime/vendor/zsh/zsh-autosuggestions/.editorconfig +18 -0
  1201. package/runtime/vendor/zsh/zsh-autosuggestions/.github/ISSUE_TEMPLATE/bug-report.md +36 -0
  1202. package/runtime/vendor/zsh/zsh-autosuggestions/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  1203. package/runtime/vendor/zsh/zsh-autosuggestions/.github/workflows/integration.yml +51 -0
  1204. package/runtime/vendor/zsh/zsh-autosuggestions/.rspec +3 -0
  1205. package/runtime/vendor/zsh/zsh-autosuggestions/.rubocop.yml +30 -0
  1206. package/runtime/vendor/zsh/zsh-autosuggestions/.ruby-version +1 -0
  1207. package/runtime/vendor/zsh/zsh-autosuggestions/CHANGELOG.md +124 -0
  1208. package/runtime/vendor/zsh/zsh-autosuggestions/DESCRIPTION +1 -0
  1209. package/runtime/vendor/zsh/zsh-autosuggestions/Dockerfile +21 -0
  1210. package/runtime/vendor/zsh/zsh-autosuggestions/Gemfile +5 -0
  1211. package/runtime/vendor/zsh/zsh-autosuggestions/Gemfile.lock +41 -0
  1212. package/runtime/vendor/zsh/zsh-autosuggestions/INSTALL.md +82 -0
  1213. package/runtime/vendor/zsh/zsh-autosuggestions/LICENSE +23 -0
  1214. package/runtime/vendor/zsh/zsh-autosuggestions/Makefile +35 -0
  1215. package/runtime/vendor/zsh/zsh-autosuggestions/README.md +188 -0
  1216. package/runtime/vendor/zsh/zsh-autosuggestions/URL +1 -0
  1217. package/runtime/vendor/zsh/zsh-autosuggestions/VERSION +1 -0
  1218. package/runtime/vendor/zsh/zsh-autosuggestions/ZSH_VERSIONS +14 -0
  1219. package/runtime/vendor/zsh/zsh-autosuggestions/install_test_zsh.sh +23 -0
  1220. package/runtime/vendor/zsh/zsh-autosuggestions/spec/async_spec.rb +70 -0
  1221. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb +14 -0
  1222. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb +43 -0
  1223. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb +14 -0
  1224. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb +12 -0
  1225. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb +13 -0
  1226. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb +80 -0
  1227. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb +39 -0
  1228. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb +24 -0
  1229. package/runtime/vendor/zsh/zsh-autosuggestions/spec/kill_ring_spec.rb +23 -0
  1230. package/runtime/vendor/zsh/zsh-autosuggestions/spec/line_init_spec.rb +17 -0
  1231. package/runtime/vendor/zsh/zsh-autosuggestions/spec/multi_line_spec.rb +8 -0
  1232. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb +30 -0
  1233. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/highlight_style_spec.rb +7 -0
  1234. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb +7 -0
  1235. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/strategy_spec.rb +55 -0
  1236. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/widget_lists_spec.rb +121 -0
  1237. package/runtime/vendor/zsh/zsh-autosuggestions/spec/spec_helper.rb +54 -0
  1238. package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/completion_spec.rb +72 -0
  1239. package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/history_spec.rb +23 -0
  1240. package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb +34 -0
  1241. package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/special_characters_helper.rb +75 -0
  1242. package/runtime/vendor/zsh/zsh-autosuggestions/spec/terminal_session.rb +99 -0
  1243. package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/disable_spec.rb +19 -0
  1244. package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/enable_spec.rb +42 -0
  1245. package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/fetch_spec.rb +24 -0
  1246. package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb +26 -0
  1247. package/runtime/vendor/zsh/zsh-autosuggestions/src/async.zsh +77 -0
  1248. package/runtime/vendor/zsh/zsh-autosuggestions/src/bind.zsh +106 -0
  1249. package/runtime/vendor/zsh/zsh-autosuggestions/src/config.zsh +95 -0
  1250. package/runtime/vendor/zsh/zsh-autosuggestions/src/fetch.zsh +27 -0
  1251. package/runtime/vendor/zsh/zsh-autosuggestions/src/highlight.zsh +26 -0
  1252. package/runtime/vendor/zsh/zsh-autosuggestions/src/start.zsh +33 -0
  1253. package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/completion.zsh +137 -0
  1254. package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/history.zsh +32 -0
  1255. package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh +66 -0
  1256. package/runtime/vendor/zsh/zsh-autosuggestions/src/util.zsh +11 -0
  1257. package/runtime/vendor/zsh/zsh-autosuggestions/src/widgets.zsh +231 -0
  1258. package/runtime/vendor/zsh/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh +1 -0
  1259. package/runtime/vendor/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh +867 -0
  1260. package/runtime/vendor/zsh/zsh-history-substring-search/README.md +236 -0
  1261. package/runtime/vendor/zsh/zsh-history-substring-search/zsh-history-substring-search.plugin.zsh +2 -0
  1262. package/runtime/vendor/zsh/zsh-history-substring-search/zsh-history-substring-search.zsh +846 -0
  1263. package/runtime/vendor/zsh/zsh-syntax-highlighting/.editorconfig +15 -0
  1264. package/runtime/vendor/zsh/zsh-syntax-highlighting/.gitattributes +1 -0
  1265. package/runtime/vendor/zsh/zsh-syntax-highlighting/.github/workflows/test.yml +75 -0
  1266. package/runtime/vendor/zsh/zsh-syntax-highlighting/.revision-hash +1 -0
  1267. package/runtime/vendor/zsh/zsh-syntax-highlighting/.version +1 -0
  1268. package/runtime/vendor/zsh/zsh-syntax-highlighting/COPYING.md +23 -0
  1269. package/runtime/vendor/zsh/zsh-syntax-highlighting/HACKING.md +99 -0
  1270. package/runtime/vendor/zsh/zsh-syntax-highlighting/INSTALL.md +169 -0
  1271. package/runtime/vendor/zsh/zsh-syntax-highlighting/Makefile +64 -0
  1272. package/runtime/vendor/zsh/zsh-syntax-highlighting/README.md +97 -0
  1273. package/runtime/vendor/zsh/zsh-syntax-highlighting/changelog.md +920 -0
  1274. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/brackets.md +31 -0
  1275. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/cursor.md +24 -0
  1276. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/line.md +24 -0
  1277. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/main.md +121 -0
  1278. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/pattern.md +24 -0
  1279. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/regexp.md +65 -0
  1280. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/root.md +25 -0
  1281. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters.md +132 -0
  1282. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/README.md +8 -0
  1283. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/brackets-highlighter.zsh +107 -0
  1284. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket-line-finish.zsh +36 -0
  1285. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket.zsh +47 -0
  1286. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/empty-styles.zsh +33 -0
  1287. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/loop-styles.zsh +53 -0
  1288. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/mismatch-patentheses.zsh +42 -0
  1289. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/near-quotes.zsh +42 -0
  1290. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/nested-parentheses.zsh +45 -0
  1291. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/only-error.zsh +34 -0
  1292. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/quoted-patentheses.zsh +34 -0
  1293. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/simple-parentheses.zsh +42 -0
  1294. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses.zsh +41 -0
  1295. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses2.zsh +40 -0
  1296. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/cursor/cursor-highlighter.zsh +47 -0
  1297. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/line/line-highlighter.zsh +44 -0
  1298. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/main-highlighter.zsh +1847 -0
  1299. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1.zsh +35 -0
  1300. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1b.zsh +36 -0
  1301. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position2.zsh +35 -0
  1302. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3.zsh +37 -0
  1303. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3b.zsh +38 -0
  1304. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position4.zsh +35 -0
  1305. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position5.zsh +35 -0
  1306. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-assignment1.zsh +38 -0
  1307. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-basic.zsh +35 -0
  1308. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-brackets.zsh +41 -0
  1309. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-command-substitution.zsh +37 -0
  1310. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment1.zsh +37 -0
  1311. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment2.zsh +37 -0
  1312. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-complex.zsh +38 -0
  1313. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-empty.zsh +38 -0
  1314. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous1.zsh +36 -0
  1315. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous2.zsh +36 -0
  1316. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-in-cmdsubst.zsh +43 -0
  1317. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop.zsh +44 -0
  1318. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop2.zsh +35 -0
  1319. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested-precommand.zsh +43 -0
  1320. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested.zsh +40 -0
  1321. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-parameter.zsh +38 -0
  1322. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument1.zsh +42 -0
  1323. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument2.zsh +42 -0
  1324. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument3.zsh +42 -0
  1325. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument4.zsh +42 -0
  1326. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-quoted.zsh +39 -0
  1327. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-redirect.zsh +38 -0
  1328. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse1.zsh +39 -0
  1329. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse2.zsh +39 -0
  1330. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse3.zsh +39 -0
  1331. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse4.zsh +42 -0
  1332. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse5.zsh +43 -0
  1333. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-self.zsh +38 -0
  1334. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-self2.zsh +37 -0
  1335. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir.zsh +36 -0
  1336. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir1b.zsh +37 -0
  1337. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token1.zsh +37 -0
  1338. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token2.zsh +37 -0
  1339. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias.zsh +53 -0
  1340. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always1.zsh +41 -0
  1341. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always2.zsh +43 -0
  1342. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always3.zsh +43 -0
  1343. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/anonymous-function.zsh +44 -0
  1344. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arg0-colon.zsh +35 -0
  1345. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith-cmdsubst-mess.zsh +46 -0
  1346. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith1.zsh +37 -0
  1347. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith2.zsh +38 -0
  1348. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-command-substitution.zsh +42 -0
  1349. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-doubled-parens.zsh +37 -0
  1350. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-empty.zsh +39 -0
  1351. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-evaluation.zsh +40 -0
  1352. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-hist-expn.zsh +38 -0
  1353. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-invalid-chars.zsh +39 -0
  1354. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-multiplication.zsh +39 -0
  1355. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-nested.zsh +38 -0
  1356. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-quoted.zsh +38 -0
  1357. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unclosed.zsh +37 -0
  1358. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unfinished.zsh +41 -0
  1359. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep1.zsh +45 -0
  1360. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep2.zsh +41 -0
  1361. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep3.zsh +41 -0
  1362. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-append.zsh +39 -0
  1363. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-argv.zsh +38 -0
  1364. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array.zsh +41 -0
  1365. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array2.zsh +40 -0
  1366. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array3.zsh +41 -0
  1367. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-invalid-command.zsh +37 -0
  1368. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array.zsh +36 -0
  1369. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array2.zsh +36 -0
  1370. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-quoted-cmdsubst.zsh +45 -0
  1371. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-semicolon.zsh +39 -0
  1372. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-subshell.zsh +37 -0
  1373. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote1.zsh +37 -0
  1374. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote2.zsh +37 -0
  1375. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign.zsh +42 -0
  1376. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword1.zsh +40 -0
  1377. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword2.zsh +40 -0
  1378. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword3.zsh +37 -0
  1379. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword4.zsh +40 -0
  1380. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword5.zsh +38 -0
  1381. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-quoted.zsh +37 -0
  1382. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-argument.zsh +58 -0
  1383. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-open.zsh +41 -0
  1384. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation.zsh +35 -0
  1385. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation2.zsh +37 -0
  1386. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-space.zsh +39 -0
  1387. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash.zsh +34 -0
  1388. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-array.zsh +42 -0
  1389. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-scalar.zsh +38 -0
  1390. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-pipeline.zsh +39 -0
  1391. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/block-assignment-no-command.zsh +38 -0
  1392. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/braces1.zsh +41 -0
  1393. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/braces2.zsh +41 -0
  1394. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching1.zsh +38 -0
  1395. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching2.zsh +38 -0
  1396. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch1.zsh +39 -0
  1397. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch10-if-negative.zsh +42 -0
  1398. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch2.zsh +39 -0
  1399. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch3.zsh +36 -0
  1400. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch4.zsh +36 -0
  1401. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch5.zsh +37 -0
  1402. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch6.zsh +40 -0
  1403. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch7.zsh +45 -0
  1404. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8-if-positive.zsh +53 -0
  1405. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8.zsh +38 -0
  1406. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch9-if-positive.zsh +42 -0
  1407. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-premature-termination.zsh +40 -0
  1408. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cdpath-abspath.zsh +38 -0
  1409. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cmdpos-elision-partial.zsh +44 -0
  1410. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-adjacent.zsh +45 -0
  1411. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-in-assignment.zsh +42 -0
  1412. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-unclosed.zsh +45 -0
  1413. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/commandseparator.zsh +38 -0
  1414. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-followed.zsh +39 -0
  1415. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-leading.zsh +36 -0
  1416. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-off.zsh +38 -0
  1417. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comments.zsh +39 -0
  1418. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/commmand-parameter.zsh +45 -0
  1419. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow.zsh +57 -0
  1420. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow2.zsh +40 -0
  1421. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow3.zsh +39 -0
  1422. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cthulhu.zsh +70 -0
  1423. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dinbrack1.zsh +41 -0
  1424. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dirs_blacklist.zsh +40 -0
  1425. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-dollar.zsh +39 -0
  1426. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-noise.zsh +42 -0
  1427. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-paren.zsh +49 -0
  1428. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted.zsh +38 -0
  1429. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted2.zsh +39 -0
  1430. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted3.zsh +39 -0
  1431. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-hyphen-option.zsh +35 -0
  1432. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted.zsh +42 -0
  1433. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted2.zsh +39 -0
  1434. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted3.zsh +42 -0
  1435. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted4.zsh +37 -0
  1436. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command-newline.zsh +39 -0
  1437. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command.zsh +36 -0
  1438. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command2.zsh +39 -0
  1439. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-line.zsh +36 -0
  1440. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals1.zsh +36 -0
  1441. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals2.zsh +38 -0
  1442. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals3.zsh +36 -0
  1443. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals4.zsh +36 -0
  1444. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/escaped-single-quote.zsh +38 -0
  1445. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/exec-redirection1.zsh +38 -0
  1446. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/fd-target-not-filename.zsh +40 -0
  1447. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-altsyntax.zsh +45 -0
  1448. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-named1.zsh +44 -0
  1449. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-named2.zsh +39 -0
  1450. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function.zsh +42 -0
  1451. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/glob.zsh +41 -0
  1452. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/global-alias1.zsh +38 -0
  1453. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/globs-with-quoting.zsh +43 -0
  1454. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/hashed-command.zsh +35 -0
  1455. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-escaped.zsh +38 -0
  1456. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-followed.zsh +39 -0
  1457. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-no.zsh +37 -0
  1458. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-unescaped.zsh +38 -0
  1459. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-yes.zsh +38 -0
  1460. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion.zsh +39 -0
  1461. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion2.zsh +34 -0
  1462. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/inheritance.zsh +40 -0
  1463. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob.zsh +37 -0
  1464. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob2.zsh +37 -0
  1465. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/loop-newline.zsh +40 -0
  1466. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval1.zsh +49 -0
  1467. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval2.zsh +40 -0
  1468. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-array-assignment1.zsh +41 -0
  1469. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string.zsh +37 -0
  1470. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string2.zsh +36 -0
  1471. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing.zsh +39 -0
  1472. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing2.zsh +38 -0
  1473. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiple-quotes.zsh +42 -0
  1474. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiple-redirections.zsh +46 -0
  1475. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob-alias.zsh +36 -0
  1476. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob-always.zsh +45 -0
  1477. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob1.zsh +38 -0
  1478. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob2.zsh +40 -0
  1479. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob3.zsh +38 -0
  1480. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob4.zsh +45 -0
  1481. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/null-exec.zsh +38 -0
  1482. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/null-exec2-printenv.zsh +38 -0
  1483. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/number_range-glob.zsh +42 -0
  1484. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/off-by-one.zsh +40 -0
  1485. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/opt-shwordsplit1.zsh +40 -0
  1486. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/optimized-cmdsubst-input.zsh +43 -0
  1487. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-dollar-quote-isnt-filename.zsh +39 -0
  1488. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-path_dirs.zsh +44 -0
  1489. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-with-quotes.zsh +37 -0
  1490. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/order-path-after-dollar.zsh +38 -0
  1491. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/order-path-before-globbing.zsh +39 -0
  1492. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-positional-in-array-append.zsh +39 -0
  1493. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument1.zsh +42 -0
  1494. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument3.zsh +42 -0
  1495. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-elision-command-word.zsh +36 -0
  1496. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-shwordsplit.zsh +38 -0
  1497. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized1.zsh +38 -0
  1498. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized2.zsh +38 -0
  1499. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-star.zsh +40 -0
  1500. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-to-global-alias.zsh +42 -0
  1501. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position1.zsh +38 -0
  1502. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position2.zsh +38 -0
  1503. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/pasted-quotes.zsh +38 -0
  1504. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-broken-symlink.zsh +41 -0
  1505. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word.zsh +45 -0
  1506. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word2.zsh +37 -0
  1507. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3.zsh +40 -0
  1508. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3b.zsh +38 -0
  1509. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word4.zsh +36 -0
  1510. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-mixed-quoting.zsh +39 -0
  1511. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-separators.zsh +53 -0
  1512. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-separators2.zsh +40 -0
  1513. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-space.zsh +37 -0
  1514. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home.zsh +36 -0
  1515. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home2.zsh +37 -0
  1516. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home3.zsh +36 -0
  1517. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-named.zsh +39 -0
  1518. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path.zsh +37 -0
  1519. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix.zsh +38 -0
  1520. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix2.zsh +39 -0
  1521. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix3.zsh +38 -0
  1522. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/plain-file-in-command-position.zsh +39 -0
  1523. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing1.zsh +40 -0
  1524. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing2.zsh +39 -0
  1525. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-then-assignment.zsh +37 -0
  1526. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type1.zsh +61 -0
  1527. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type2.zsh +55 -0
  1528. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type3.zsh +55 -0
  1529. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-uninstalled.zsh +44 -0
  1530. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-unknown-option.zsh +43 -0
  1531. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand.zsh +36 -0
  1532. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand2.zsh +36 -0
  1533. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand3.zsh +41 -0
  1534. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand4.zsh +39 -0
  1535. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/prefix-redirection.zsh +42 -0
  1536. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-after-redirection.zsh +46 -0
  1537. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-redirection-isnt-globbing.zsh +41 -0
  1538. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution.zsh +43 -0
  1539. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution2.zsh +51 -0
  1540. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/quoted-command-substitution-empty.zsh +44 -0
  1541. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/quoted-redirection-in-command-word.zsh +37 -0
  1542. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/rc-quotes.zsh +39 -0
  1543. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-all.zsh +95 -0
  1544. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-comment.zsh +38 -0
  1545. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-from-param.zsh +40 -0
  1546. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-in-cmdsubst.zsh +41 -0
  1547. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-inhibits-elision.zsh +38 -0
  1548. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-is-not-option.zsh +38 -0
  1549. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-special-cases.zsh +44 -0
  1550. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection.zsh +39 -0
  1551. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection2.zsh +41 -0
  1552. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection3.zsh +42 -0
  1553. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/reserved-word.zsh +38 -0
  1554. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/simple-command.zsh +34 -0
  1555. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/simple-redirection.zsh +38 -0
  1556. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/subshell.zsh +51 -0
  1557. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-command.zsh +54 -0
  1558. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-comment.zsh +39 -0
  1559. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-longopt.zsh +38 -0
  1560. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection.zsh +48 -0
  1561. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection2.zsh +41 -0
  1562. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection3.zsh +41 -0
  1563. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/tilde-command-word.zsh +37 -0
  1564. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect1.zsh +39 -0
  1565. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect2.zsh +40 -0
  1566. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/unbackslash.zsh +34 -0
  1567. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/unknown-command.zsh +34 -0
  1568. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/vanilla-newline.zsh +39 -0
  1569. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/vi-linewise-mode.zsh +43 -0
  1570. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/pattern/pattern-highlighter.zsh +60 -0
  1571. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/pattern/test-data/rm-rf.zsh +36 -0
  1572. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/regexp-highlighter.zsh +62 -0
  1573. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/complex.zsh +37 -0
  1574. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/subexpression.zsh +36 -0
  1575. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/word-boundary.zsh +42 -0
  1576. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/root/root-highlighter.zsh +44 -0
  1577. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after1-smaller.png +0 -0
  1578. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after1.png +0 -0
  1579. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after2-smaller.png +0 -0
  1580. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after2.png +0 -0
  1581. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after3-smaller.png +0 -0
  1582. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after3.png +0 -0
  1583. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after4-smaller.png +0 -0
  1584. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before1-smaller.png +0 -0
  1585. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before1.png +0 -0
  1586. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before2-smaller.png +0 -0
  1587. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before2.png +0 -0
  1588. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before3-smaller.png +0 -0
  1589. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before3.png +0 -0
  1590. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before4-smaller.png +0 -0
  1591. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/preview-smaller.png +0 -0
  1592. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/preview.png +0 -0
  1593. package/runtime/vendor/zsh/zsh-syntax-highlighting/release.md +21 -0
  1594. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/README.md +124 -0
  1595. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/edit-failed-tests +40 -0
  1596. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/generate.zsh +117 -0
  1597. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/tap-colorizer.zsh +71 -0
  1598. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/tap-filter +47 -0
  1599. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-highlighting.zsh +291 -0
  1600. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-perfs.zsh +103 -0
  1601. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-zprof.zsh +78 -0
  1602. package/runtime/vendor/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh +2 -0
  1603. package/runtime/vendor/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +587 -0
  1604. package/runtime/versions.env +19 -0
@@ -0,0 +1,2120 @@
1
+ # Powerlevel10k
2
+ [![Gitter](https://badges.gitter.im/powerlevel10k/community.svg)](
3
+ https://gitter.im/powerlevel10k/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
4
+
5
+ - **THE PROJECT HAS VERY LIMITED SUPPORT**
6
+ - **NO NEW FEATURES ARE IN THE WORKS**
7
+ - **MOST BUGS WILL GO UNFIXED**
8
+ - **HELP REQUESTS WILL BE IGNORED**
9
+
10
+ Powerlevel10k is a theme for Zsh. It emphasizes [speed](#uncompromising-performance),
11
+ [flexibility](#extremely-customizable) and [out-of-the-box experience](#configuration-wizard).
12
+
13
+ ![Powerlevel10k](
14
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/prompt-styles-high-contrast.png)
15
+
16
+ - [Getting started](#getting-started)
17
+ - [Features](#features)
18
+ - [Installation](#installation)
19
+ - [Configuration](#configuration)
20
+ - [Fonts](#fonts)
21
+ - [Try it in Docker](#try-it-in-docker)
22
+ - [License](#license)
23
+ - [FAQ](#faq)
24
+ - [Troubleshooting](#troubleshooting)
25
+
26
+ ## Getting started
27
+
28
+ 1. [Install the recommended font](#meslo-nerd-font-patched-for-powerlevel10k). *Optional but highly
29
+ recommended.*
30
+ 1. [Install Powerlevel10k](#installation) itself.
31
+ 1. Restart Zsh with `exec zsh`.
32
+ 1. Type `p10k configure` if the configuration wizard doesn't start automatically.
33
+
34
+ ## Features
35
+
36
+ - [Configuration wizard](#configuration-wizard)
37
+ - [Uncompromising performance](#uncompromising-performance)
38
+ - [Powerlevel9k compatibility](#powerlevel9k-compatibility)
39
+ - [Pure compatibility](#pure-compatibility)
40
+ - [Instant prompt](#instant-prompt)
41
+ - [Show on command](#show-on-command)
42
+ - [Transient prompt](#transient-prompt)
43
+ - [Current directory that just works](#current-directory-that-just-works)
44
+ - [Extremely customizable](#extremely-customizable)
45
+ - [Batteries included](#batteries-included)
46
+ - [Extensible](#extensible)
47
+
48
+ ### Configuration wizard
49
+
50
+ Type `p10k configure` to access the builtin configuration wizard right from your terminal.
51
+
52
+ <details>
53
+ <summary>Screen recording</summary>
54
+
55
+ ![Powerlevel10k Configuration Wizard](
56
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/configuration-wizard.gif)
57
+ </details>
58
+
59
+ All styles except [Pure](#pure-compatibility) are functionally equivalent. They display the same
60
+ information and differ only in presentation.
61
+
62
+ Configuration wizard creates `~/.p10k.zsh` based on your preferences. Additional prompt
63
+ customization can be done by editing this file. It has plenty of comments to help you navigate
64
+ through configuration options.
65
+
66
+ *Tip*: Install [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k) before
67
+ running `p10k configure` to unlock all prompt styles.
68
+
69
+ *FAQ:*
70
+
71
+ - [What is the best prompt style in the configuration wizard?](
72
+ #what-is-the-best-prompt-style-in-the-configuration-wizard)
73
+ - [What do different symbols in Git status mean?](
74
+ #what-do-different-symbols-in-git-status-mean)
75
+ - [How do I change prompt colors?](#how-do-i-change-prompt-colors)
76
+
77
+ *Troubleshooting*:
78
+
79
+ - [Some prompt styles are missing from the configuration wizard](
80
+ #some-prompt-styles-are-missing-from-the-configuration-wizard).
81
+ - [Question mark in prompt](#question-mark-in-prompt).
82
+ - [Icons, glyphs or powerline symbols don't render](#icons-glyphs-or-powerline-symbols-dont-render).
83
+ - [Sub-pixel imperfections around powerline symbols](
84
+ #sub-pixel-imperfections-around-powerline-symbols).
85
+ - [Directory is difficult to see in prompt when using Rainbow style](
86
+ #directory-is-difficult-to-see-in-prompt-when-using-rainbow-style).
87
+
88
+ ### Uncompromising performance
89
+
90
+ When you hit *ENTER*, the next prompt appears instantly. With Powerlevel10k there is no prompt lag.
91
+ If you install Cygwin on Raspberry Pi, `cd` into a Linux Git repository and activate enough prompt
92
+ segments to fill four prompt lines on both sides of the screen... wait, that's just crazy and no
93
+ one ever does that. Probably impossible, too. The point is, Powerlevel10k prompt is always fast, no
94
+ matter what you do!
95
+
96
+ <details>
97
+ <summary>Screen recording</summary>
98
+
99
+ ![Powerlevel10k Performance](
100
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/performance.gif)
101
+ </details>
102
+
103
+ Note how the effect of every command is instantly reflected by the very next prompt.
104
+
105
+ | Command | Prompt Indicator | Meaning |
106
+ |-------------------------------|:----------------:|----------------------------------------------------------------------:|
107
+ | `timew start hack linux` | `⌚ hack linux` | time tracking enabled in [timewarrior](https://timewarrior.net/) |
108
+ | `touch x y` | `?2` | 2 untracked files in the Git repo |
109
+ | `rm COPYING` | `!1` | 1 unstaged change in the Git repo |
110
+ | `echo 3.7.3 >.python-version` | `🐍 3.7.3` | the current python version in [pyenv](https://github.com/pyenv/pyenv) |
111
+
112
+ Other Zsh themes capable of displaying the same information either produce prompt lag or print
113
+ prompt that doesn't reflect the current state of the system and then refresh it later. With
114
+ Powerlevel10k you get fast prompt *and* up-to-date information.
115
+
116
+ *FAQ*: [Is it really fast?](#is-it-really-fast)
117
+
118
+ ### Powerlevel9k compatibility
119
+
120
+ Powerlevel10k understands all [Powerlevel9k](https://github.com/Powerlevel9k/powerlevel9k)
121
+ configuration parameters.
122
+
123
+ <details>
124
+ <summary>Screen recording</summary>
125
+
126
+ ![Powerlevel10k Compatibility with 9k](
127
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/9k-compatibility.gif)
128
+ </details>
129
+
130
+ [Migration](#installation) from Powerlevel9k to Powerlevel10k is a straightforward process. All
131
+ your `POWERLEVEL9K` configuration parameters will still work. Prompt will look the same as before
132
+ ([almost](
133
+ #does-powerlevel10k-always-render-exactly-the-same-prompt-as-powerlevel9k-given-the-same-config))
134
+ but it will be [much faster](#uncompromising-performance) ([certainly](#is-it-really-fast)).
135
+
136
+ *FAQ*:
137
+
138
+ - [I'm using Powerlevel9k with Oh My Zsh. How do I migrate?](
139
+ #im-using-powerlevel9k-with-oh-my-zsh-how-do-i-migrate)
140
+ - [Does Powerlevel10k always render exactly the same prompt as Powerlevel9k given the same config?](
141
+ #does-powerlevel10k-always-render-exactly-the-same-prompt-as-powerlevel9k-given-the-same-config)
142
+ - [What is the relationship between Powerlevel9k and Powerlevel10k?](
143
+ #What-is-the-relationship-between-powerlevel9k-and-powerlevel10k)
144
+
145
+ ### Pure compatibility
146
+
147
+ Powerlevel10k can produce the same prompt as [Pure](https://github.com/sindresorhus/pure). Type
148
+ `p10k configure` and select *Pure* style.
149
+
150
+ <details>
151
+ <summary>Screen recording</summary>
152
+
153
+ ![Powerlevel10k Pure Style](
154
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/pure-style.gif)
155
+ </details>
156
+
157
+ You can still use Powerlevel10k features such as [transient prompt](#transient-prompt) or
158
+ [instant prompt](#instant-prompt) when sporting Pure style.
159
+
160
+ To customize prompt, edit `~/.p10k.zsh`. Powerlevel10k doesn't recognize Pure configuration
161
+ parameters, so you'll need to use `POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=3` instead of
162
+ `PURE_CMD_MAX_EXEC_TIME=3`, etc. All relevant parameters are in `~/.p10k.zsh`. This file has
163
+ plenty of comments to help you navigate through it.
164
+
165
+ *FAQ:* [What is the best prompt style in the configuration wizard?](
166
+ #what-is-the-best-prompt-style-in-the-configuration-wizard)
167
+
168
+ ### <a name='what-is-instant-prompt'></a>Instant prompt
169
+
170
+ If your `~/.zshrc` loads many plugins, or perhaps just a few slow ones
171
+ (for example, [pyenv](https://github.com/pyenv/pyenv) or [nvm](https://github.com/nvm-sh/nvm)), you
172
+ may have noticed that it takes some time for Zsh to start.
173
+
174
+ <details>
175
+ <summary>Screen recording</summary>
176
+
177
+ ![Powerlevel10k No Instant Prompt](
178
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/no-instant-prompt.gif)
179
+ </details>
180
+
181
+ Powerlevel10k can remove Zsh startup lag **even if it's not caused by a theme**.
182
+
183
+ <details>
184
+ <summary>Screen recording</summary>
185
+
186
+ ![Powerlevel10k Instant Prompt](
187
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/instant-prompt.gif)
188
+ </details>
189
+
190
+ This feature is called *Instant Prompt*. You need to explicitly enable it through `p10k configure`
191
+ or [manually](#how-do-i-configure-instant-prompt). It does what it says on the tin -- prints prompt
192
+ instantly upon Zsh startup allowing you to start typing while plugins are still loading.
193
+
194
+ Other themes *increase* Zsh startup lag -- some by a lot, others by a just a little. Powerlevel10k
195
+ *removes* it outright.
196
+
197
+ If you are curious about how *Instant Prompt* works, see
198
+ [this section in zsh-bench](https://github.com/romkatv/zsh-bench#instant-prompt).
199
+
200
+ *FAQ:* [How do I configure instant prompt?](#how-do-i-configure-instant-prompt)
201
+
202
+ ### Show on command
203
+
204
+ The behavior of some commands depends on global environment. For example, `kubectl run ...` runs an
205
+ image on the cluster defined by the current kubernetes context. If you frequently change context
206
+ between "prod" and "testing", you might want to display the current context in Zsh prompt. If you do
207
+ likewise for AWS, Azure and Google Cloud credentials, prompt will get pretty crowded.
208
+
209
+ Enter *Show On Command*. This feature makes prompt segments appear only when they are relevant to
210
+ the command you are currently typing.
211
+
212
+ <details>
213
+ <summary>Screen recording</summary>
214
+
215
+ ![Powerlevel10k Show On Command](
216
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/show-on-command.gif)
217
+ </details>
218
+
219
+ Configs created by `p10k configure` enable show on command for several prompt segments by default.
220
+ Here's the relevant parameter for kubernetes context:
221
+
222
+ ```zsh
223
+ # Show prompt segment "kubecontext" only when the command you are typing invokes one of these tools.
224
+ typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens'
225
+ ```
226
+
227
+ To customize when different prompt segments are shown, open `~/.p10k.zsh`, search for
228
+ `SHOW_ON_COMMAND` and either remove these parameters to display affected segments unconditionally,
229
+ or change their values.
230
+
231
+ ### Transient prompt
232
+
233
+ When *Transient Prompt* is enabled through `p10k configure`, Powerlevel10k will trim down every
234
+ prompt when accepting a command line.
235
+
236
+ <details>
237
+ <summary>Screen recording</summary>
238
+
239
+ ![Powerlevel10k Transient Prompt](
240
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/transient-prompt.gif)
241
+ </details>
242
+
243
+ Transient prompt makes it much easier to copy-paste series of commands from the terminal scrollback.
244
+
245
+ *Tip*: If you enable transient prompt, take advantage of two-line prompt. You'll get the benefit of
246
+ extra space for typing commands without the usual drawback of reduced scrollback density. Sparse
247
+ prompt (with an empty line before prompt) also works great in combination with transient prompt.
248
+
249
+ ### Current directory that just works
250
+
251
+ The current working directory is perhaps the most important prompt segment. Powerlevel10k goes to
252
+ great length to highlight its important parts and to truncate it with the least loss of information
253
+ when horizontal space gets scarce.
254
+
255
+ <details>
256
+ <summary>Screen recording</summary>
257
+
258
+ ![Powerlevel10k Directory Truncation](
259
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/directory-truncation.gif)
260
+ </details>
261
+
262
+ When the full directory doesn't fit, the leftmost segment gets truncated to its shortest unique
263
+ prefix. In the screencast, `~/work` becomes `~/wo`. It couldn't be truncated to `~/w` because it
264
+ would be ambiguous (there was `~/wireguard` when the session was recorded). The next segment --
265
+ `projects` -- turns into `p` as there was nothing else that started with `p` in `~/work/`.
266
+
267
+ Directory segments are shown in one of three colors:
268
+
269
+ - Truncated segments are bleak.
270
+ - Important segments are bright and never truncated. These include the first and the last segment,
271
+ roots of Git repositories, etc.
272
+ - Regular segments (not truncated but can be) use in-between color.
273
+
274
+ *Tip*: If you copy-paste a truncated directory and hit *TAB*, it'll complete to the original.
275
+
276
+ *Troubleshooting*: [Directory is difficult to see in prompt when using Rainbow style.](
277
+ #directory-is-difficult-to-see-in-prompt-when-using-rainbow-style)
278
+
279
+ ### Extremely customizable
280
+
281
+ Powerlevel10k can be configured to look like any other Zsh theme out there.
282
+
283
+ <details>
284
+ <summary>Screen recording</summary>
285
+
286
+ ![Powerlevel10k Other Theme Emulation](
287
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/other-theme-emulation.gif)
288
+ </details>
289
+
290
+ [Pure](#pure-compatibility), [Powerlevel9k](#powerlevel9k-compatibility) and [robbyrussell](
291
+ #how-to-make-powerlevel10k-look-like-robbyrussell-oh-my-zsh-theme) emulations are built-in.
292
+ To emulate the appearance of other themes, you'll need to write a suitable configuration file. The
293
+ best way to go about it is to run `p10k configure`, select the style that is the closest to your
294
+ goal and then edit `~/.p10k.zsh`.
295
+
296
+ The full range of Powerlevel10k appearance spans from spartan:
297
+
298
+ ![Powerlevel10k Spartan Style](
299
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/spartan-style.png)
300
+
301
+ To ~~ridiculous~~ extravagant:
302
+
303
+ ![Powerlevel10k Extravagant Style](
304
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/extravagant-style.png)
305
+
306
+ ### Batteries included
307
+
308
+ Powerlevel10k comes with dozens of built-in high quality prompt segments that can display
309
+ information from a variety of sources. When you run `p10k configure` and choose any style
310
+ except [Pure](#pure-compatibility), many of these segments get enabled by
311
+ default while others can be manually enabled by opening `~/.p10k.zsh` and uncommenting them.
312
+ You can enable as many segments as you like. It won't slow down your prompt or Zsh startup.
313
+
314
+ | Segment | Meaning |
315
+ |--------:|---------|
316
+ | `anaconda` | virtual environment from [conda](https://conda.io/) |
317
+ | `asdf` | tool versions from [asdf](https://github.com/asdf-vm/asdf) |
318
+ | `aws` | [aws profile](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html) |
319
+ | `aws_eb_env` | [aws elastic beanstalk](https://aws.amazon.com/elasticbeanstalk/) environment |
320
+ | `azure` | [azure](https://docs.microsoft.com/en-us/cli/azure) account name |
321
+ | `background_jobs` | presence of background jobs |
322
+ | `battery` | internal battery state and charge level (yep, batteries *literally* included) |
323
+ | `command_execution_time` | duration (wall time) of the last command |
324
+ | `context` | user@hostname |
325
+ | `cpu_arch` | CPU architecture |
326
+ | `dir` | current working directory |
327
+ | `direnv` | [direnv](https://direnv.net/) status |
328
+ | `disk_usage` | disk usage |
329
+ | `dotnet_version` | [dotnet](https://dotnet.microsoft.com) version |
330
+ | `fvm` | flutter environment from [fvm](https://github.com/leoafarias/fvm) |
331
+ | `gcloud` | [google cloud](https://cloud.google.com/) cli account and project |
332
+ | `goenv` | go environment from [goenv](https://github.com/syndbg/goenv) |
333
+ | `google_app_cred` | [google application credentials](https://cloud.google.com/docs/authentication/production) |
334
+ | `go_version` | [go](https://golang.org) version |
335
+ | `haskell_stack` | haskell version from [stack](https://haskellstack.org/) |
336
+ | `ip` | IP address and bandwidth usage for a specified network interface |
337
+ | `java_version` | [java](https://www.java.com/) version |
338
+ | `jenv` | java environment from [jenv](https://github.com/jenv/jenv) |
339
+ | `kubecontext` | current [kubernetes](https://kubernetes.io/) context |
340
+ | `laravel_version` | [laravel php framework](https://laravel.com/) version |
341
+ | `load` | CPU load |
342
+ | `luaenv` | lua environment from [luaenv](https://github.com/cehoffman/luaenv) |
343
+ | `midnight_commander` | [midnight commander](https://midnight-commander.org/) shell |
344
+ | `nix_shell` | [nix shell](https://nixos.org/nixos/nix-pills/developing-with-nix-shell.html) indicator |
345
+ | `nnn` | [nnn](https://github.com/jarun/nnn) shell |
346
+ | `lf` | [lf](https://github.com/gokcehan/lf) shell |
347
+ | `chezmoi_shell` | [chezmoi](https://www.chezmoi.io/) shell |
348
+ | `nodeenv` | node.js environment from [nodeenv](https://github.com/ekalinin/nodeenv) |
349
+ | `nodenv` | node.js environment from [nodenv](https://github.com/nodenv/nodenv) |
350
+ | `node_version` | [node.js](https://nodejs.org/) version |
351
+ | `nordvpn` | [nordvpn](https://nordvpn.com/) connection status |
352
+ | `nvm` | node.js environment from [nvm](https://github.com/nvm-sh/nvm) |
353
+ | `os_icon` | your OS logo (apple for macOS, swirl for debian, etc.) |
354
+ | `package` | `name@version` from [package.json](https://docs.npmjs.com/files/package.json) |
355
+ | `per_directory_history` | Oh My Zsh [per-directory-history](https://github.com/jimhester/per-directory-history) local/global indicator |
356
+ | `perlbrew` | perl version from [perlbrew](https://github.com/gugod/App-perlbrew) |
357
+ | `phpenv` | php environment from [phpenv](https://github.com/phpenv/phpenv) |
358
+ | `php_version` | [php](https://www.php.net/) version |
359
+ | `plenv` | perl environment from [plenv](https://github.com/tokuhirom/plenv) |
360
+ | `prompt_char` | multi-functional prompt symbol; changes depending on vi mode: `❯`, `❮`, `V`, `▶` for insert, command, visual and replace mode respectively; turns red on error |
361
+ | `proxy` | system-wide http/https/ftp proxy |
362
+ | `public_ip` | public IP address |
363
+ | `pyenv` | python environment from [pyenv](https://github.com/pyenv/pyenv) |
364
+ | `ram` | free RAM |
365
+ | `ranger` | [ranger](https://github.com/ranger/ranger) shell |
366
+ | `yazi` | [yazi](https://github.com/sxyazi/yazi) shell |
367
+ | `rbenv` | ruby environment from [rbenv](https://github.com/rbenv/rbenv) |
368
+ | `rust_version` | [rustc](https://www.rust-lang.org) version |
369
+ | `rvm` | ruby environment from [rvm](https://rvm.io) |
370
+ | `scalaenv` | scala version from [scalaenv](https://github.com/scalaenv/scalaenv) |
371
+ | `status` | exit code of the last command |
372
+ | `swap` | used swap |
373
+ | `taskwarrior` | [taskwarrior](https://taskwarrior.org/) task count |
374
+ | `terraform` | [terraform](https://www.terraform.io) workspace |
375
+ | `terraform_version` | [terraform](https://www.terraform.io) version |
376
+ | `time` | current time |
377
+ | `timewarrior` | [timewarrior](https://timewarrior.net/) tracking status |
378
+ | `todo` | [todo](https://github.com/todotxt/todo.txt-cli) items |
379
+ | `toolbox` | [toolbox](https://github.com/containers/toolbox) name |
380
+ | `vcs` | Git repository status |
381
+ | `vim_shell` | [vim](https://www.vim.org/) shell (`:sh`) |
382
+ | `virtualenv` | python environment from [venv](https://docs.python.org/3/library/venv.html) |
383
+ | `vi_mode` | vi mode (you don't need this if you've enabled prompt_char) |
384
+ | `vpn_ip` | virtual private network indicator |
385
+ | `wifi` | WiFi speed |
386
+ | `xplr` | [xplr](https://github.com/sayanarijit/xplr) shell |
387
+
388
+ ### Extensible
389
+
390
+ If there is no prompt segment that does what you need, implement your own. Powerlevel10k provides
391
+ public API for defining segments that are as fast and as flexible as built-in ones.
392
+
393
+ <details>
394
+ <summary>Screen recording</summary>
395
+
396
+ ![Powerlevel10k Custom Segment](
397
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/custom-segment.gif)
398
+ </details>
399
+
400
+ On Linux you can fetch current CPU temperature by reading `/sys/class/thermal/thermal_zone0/temp`.
401
+ The screencast shows how to define a prompt segment to display this value. Once the segment is
402
+ defined, you can use it like any other segment. All standard customization parameters will work for
403
+ it out of the box.
404
+
405
+ Type `p10k help segment` for reference.
406
+
407
+ *Note*: If you modify `POWERLEVEL9K_*` parameters in an already initialized interactive shell (as
408
+ opposed to editing `~/.p10k.zsh`), the changes might not be immediately effective. To apply the
409
+ modifications, invoke `p10k reload`. Setting `POWERLEVEL9K_DISABLE_HOT_RELOAD=false` eliminates the
410
+ necessity for `p10k reload` but results in a marginally slower prompt.
411
+
412
+ *Tip*: Prefix names of your own segments with `my_` to avoid clashes with future versions of
413
+ Powerlevel10k.
414
+
415
+ ## Installation
416
+
417
+ - [Manual](#manual) 👈 **choose this if confused or uncertain**
418
+ - [Oh My Zsh](#oh-my-zsh)
419
+ - [Prezto](#prezto)
420
+ - [Zim](#zim)
421
+ - [Antibody](#antibody)
422
+ - [Antidote](#antidote)
423
+ - [Antigen](#antigen)
424
+ - [Zplug](#zplug)
425
+ - [Zgen](#zgen)
426
+ - [Zplugin](#zplugin)
427
+ - [Zinit](#zinit)
428
+ - [Zi](#zi)
429
+ - [Zap](#zap)
430
+ - [Homebrew](#homebrew)
431
+ - [Arch Linux](#arch-linux)
432
+ - [Alpine Linux](#alpine-linux)
433
+ - [Fig](#fig)
434
+
435
+ ### Manual
436
+
437
+ ```zsh
438
+ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
439
+ echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
440
+ ```
441
+
442
+ Users in China can use the official mirror on gitee.com for faster download.<br>
443
+ 中国用户可以使用 gitee.com 上的官方镜像加速下载.
444
+
445
+ ```zsh
446
+ git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ~/powerlevel10k
447
+ echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
448
+ ```
449
+
450
+ This is the simplest kind of installation and it works even if you are using a plugin manager. Just
451
+ make sure to disable the current theme in your plugin manager. See
452
+ [troubleshooting](#cannot-make-powerlevel10k-work-with-my-plugin-manager) for help.
453
+
454
+ ### Oh My Zsh
455
+
456
+ 1. Clone the repository:
457
+ ```zsh
458
+ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"
459
+ ```
460
+ Users in China can use the official mirror on gitee.com for faster download.<br>
461
+ 中国用户可以使用 gitee.com 上的官方镜像加速下载.
462
+
463
+ ```zsh
464
+ git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"
465
+ ```
466
+ 2. Open `~/.zshrc`, find the line that sets `ZSH_THEME`, and change its value to `"powerlevel10k/powerlevel10k"`.
467
+
468
+ ### Prezto
469
+
470
+ Add `zstyle :prezto:module:prompt theme powerlevel10k` to `~/.zpreztorc`.
471
+
472
+ ### Zim
473
+
474
+ Add `zmodule romkatv/powerlevel10k --use degit` to `~/.zimrc` and run `zimfw install`.
475
+
476
+ ### Antibody
477
+
478
+ Add `antibody bundle romkatv/powerlevel10k` to `~/.zshrc`.
479
+
480
+ ### Antidote
481
+
482
+ Add `romkatv/powerlevel10k` to `~/.zsh_plugins.txt`.
483
+
484
+ ### Antigen
485
+
486
+ Add `antigen theme romkatv/powerlevel10k` to `~/.zshrc`. Make sure you have `antigen apply`
487
+ somewhere after it.
488
+
489
+ ### Zplug
490
+
491
+ Add `zplug romkatv/powerlevel10k, as:theme, depth:1` to `~/.zshrc`.
492
+
493
+ ### Zgen
494
+
495
+ Add `zgen load romkatv/powerlevel10k powerlevel10k` to `~/.zshrc`.
496
+
497
+ ### Zplugin
498
+
499
+ Add `zplugin ice depth=1; zplugin light romkatv/powerlevel10k` to `~/.zshrc`.
500
+
501
+ The use of `depth=1` ice is optional. Other types of ice are neither recommended nor officially
502
+ supported by Powerlevel10k.
503
+
504
+ ### Zinit
505
+
506
+ Add `zinit ice depth=1; zinit light romkatv/powerlevel10k` to `~/.zshrc`.
507
+
508
+ The use of `depth=1` ice is optional. Other types of ice are neither recommended nor officially
509
+ supported by Powerlevel10k.
510
+
511
+ ### Zi
512
+
513
+ Add `zi ice depth=1; zi light romkatv/powerlevel10k` to `~/.zshrc`.
514
+
515
+ The use of `depth=1` ice is optional. Other types of ice are neither recommended nor officially
516
+ supported by Powerlevel10k.
517
+
518
+ ### Zap
519
+
520
+ Add `plug "romkatv/powerlevel10k"` to `~/.zshrc`.
521
+
522
+ ### Homebrew
523
+
524
+ ```zsh
525
+ brew install powerlevel10k
526
+ echo "source $(brew --prefix)/share/powerlevel10k/powerlevel10k.zsh-theme" >>~/.zshrc
527
+ ```
528
+
529
+ ### Arch Linux
530
+
531
+ ```zsh
532
+ yay -S --noconfirm zsh-theme-powerlevel10k-git
533
+ echo 'source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
534
+ ```
535
+
536
+ [zsh-theme-powerlevel10k-git](https://aur.archlinux.org/packages/zsh-theme-powerlevel10k-git/)
537
+ referenced above is the official Powerlevel10k package.
538
+
539
+ ### Alpine Linux
540
+
541
+ ```zsh
542
+ apk add zsh zsh-theme-powerlevel10k
543
+ mkdir -p ~/.local/share/zsh/plugins
544
+ ln -s /usr/share/zsh/plugins/powerlevel10k ~/.local/share/zsh/plugins/
545
+ ```
546
+
547
+ ### Fig
548
+
549
+ Follow the instructions on
550
+ [this page](https://fig.io/plugins/other/powerlevel10k).
551
+
552
+ ## Configuration
553
+
554
+ - [For new users](#for-new-users)
555
+ - [For Powerlevel9k users](#for-powerlevel9k-users)
556
+
557
+ ### For new users
558
+
559
+ On the first run, Powerlevel10k [configuration wizard](#configuration-wizard) will ask you a few
560
+ questions and configure your prompt. If it doesn't trigger automatically, type `p10k configure`.
561
+ Configuration wizard creates `~/.p10k.zsh` based on your preferences. Additional prompt
562
+ customization can be done by editing this file. It has plenty of comments to help you navigate
563
+ through configuration options.
564
+
565
+ *FAQ*:
566
+
567
+ - [What is the best prompt style in the configuration wizard?](
568
+ #what-is-the-best-prompt-style-in-the-configuration-wizard)
569
+ - [What do different symbols in Git status mean?](
570
+ #what-do-different-symbols-in-git-status-mean)
571
+ - [How do I change the format of Git status?](#how-do-i-change-the-format-of-git-status)
572
+ - [How do I add username and/or hostname to prompt?](
573
+ #how-do-i-add-username-andor-hostname-to-prompt)
574
+ - [How do I change prompt colors?](#how-do-i-change-prompt-colors)
575
+ - [Why some prompt segments appear and disappear as I'm typing?](
576
+ #why-some-prompt-segments-appear-and-disappear-as-im-typing)
577
+
578
+ *Troubleshooting*:
579
+
580
+ - [Question mark in prompt](#question-mark-in-prompt).
581
+ - [Icons, glyphs or powerline symbols don't render](#icons-glyphs-or-powerline-symbols-dont-render).
582
+ - [Sub-pixel imperfections around powerline symbols](
583
+ #sub-pixel-imperfections-around-powerline-symbols).
584
+ - [Directory is difficult to see in prompt when using Rainbow style](
585
+ #directory-is-difficult-to-see-in-prompt-when-using-rainbow-style).
586
+
587
+ ### For Powerlevel9k users
588
+
589
+ If you've been using Powerlevel9k before, **do not remove the configuration options**. Powerlevel10k
590
+ will pick them up and provide you with the same prompt UI you are used to. See
591
+ [Powerlevel9k compatibility](#powerlevel9k-compatibility).
592
+
593
+ *FAQ*:
594
+
595
+ - [I'm using Powerlevel9k with Oh My Zsh. How do I migrate?](
596
+ #im-using-powerlevel9k-with-oh-my-zsh-how-do-i-migrate)
597
+ - [What is the relationship between Powerlevel9k and Powerlevel10k?](
598
+ #what-is-the-relationship-between-powerlevel9k-and-powerlevel10k)
599
+ - [Does Powerlevel10k always render exactly the same prompt as Powerlevel9k given the same config?](
600
+ #does-powerlevel10k-always-render-exactly-the-same-prompt-as-powerlevel9k-given-the-same-config)
601
+
602
+ *Troubleshooting*: [Extra or missing spaces in prompt compared to Powerlevel9k](
603
+ #extra-or-missing-spaces-in-prompt-compared-to-powerlevel9k).
604
+
605
+ ## Fonts
606
+
607
+ Powerlevel10k doesn't require custom fonts but can take advantage of them if they are available.
608
+ It works well with [Nerd Fonts](https://github.com/ryanoasis/nerd-fonts),
609
+ [Source Code Pro](https://github.com/adobe-fonts/source-code-pro),
610
+ [Font Awesome](https://fontawesome.com/), [Powerline](https://github.com/powerline/fonts), and even
611
+ the default system fonts. The full choice of style options is available only when using
612
+ [Nerd Fonts](https://github.com/ryanoasis/nerd-fonts).
613
+
614
+ 👇 **Recommended font**: Meslo Nerd Font patched for Powerlevel10k. 👇
615
+
616
+ ### <a name='recommended-meslo-nerd-font-patched-for-powerlevel10k'></a><a name='font'></a>Meslo Nerd Font patched for Powerlevel10k
617
+
618
+ Gorgeous monospace font designed by Jim Lyles for Bitstream, customized by the same for Apple,
619
+ further customized by André Berg, and finally patched by yours truly with customized scripts
620
+ originally developed by Ryan L McIntyre of Nerd Fonts. Contains all glyphs and symbols that
621
+ Powerlevel10k may need. Battle-tested in dozens of different terminals on all major operating
622
+ systems.
623
+
624
+ *FAQ*: [How was the recommended font created?](#how-was-the-recommended-font-created)
625
+
626
+ #### Automatic font installation
627
+
628
+ If you are using iTerm2 or Termux, `p10k configure` can install the recommended font for you.
629
+ Simply answer `Yes` when asked whether to install *Meslo Nerd Font*.
630
+
631
+ If you are using a different terminal, proceed with manual font installation. 👇
632
+
633
+ #### Manual font installation
634
+
635
+ 1. Download these four ttf files:
636
+ - [MesloLGS NF Regular.ttf](
637
+ https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Regular.ttf)
638
+ - [MesloLGS NF Bold.ttf](
639
+ https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold.ttf)
640
+ - [MesloLGS NF Italic.ttf](
641
+ https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Italic.ttf)
642
+ - [MesloLGS NF Bold Italic.ttf](
643
+ https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold%20Italic.ttf)
644
+ 1. Double-click on each file and click "Install". This will make `MesloLGS NF` font available to all
645
+ applications on your system.
646
+ 1. Configure your terminal to use this font:
647
+ - **iTerm2**: Type `p10k configure` and answer `Yes` when asked whether to install
648
+ *Meslo Nerd Font*. Alternatively, open *iTerm2 → Preferences → Profiles → Text* and set *Font* to
649
+ `MesloLGS NF`.
650
+ - **Apple Terminal**: Open *Terminal → Preferences → Profiles → Text*, click *Change* under *Font*
651
+ and select `MesloLGS NF` family.
652
+ - **Hyper**: Open *Hyper → Edit → Preferences* and change the value of `fontFamily` under
653
+ `module.exports.config` to `MesloLGS NF`.
654
+ - **Visual Studio Code**: Open *File → Preferences → Settings* (PC) or
655
+ *Code → Preferences → Settings* (Mac), enter `terminal.integrated.fontFamily` in the search box at
656
+ the top of *Settings* tab and set the value below to `MesloLGS NF`.
657
+ Consult [this screenshot](
658
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/389133fb8c9a2347929a23702ce3039aacc46c3d/visual-studio-code-font-settings.jpg)
659
+ to see how it should look like or see [this issue](
660
+ https://github.com/romkatv/powerlevel10k/issues/671) for extra information.
661
+
662
+ Note that software installed via [Snap](https://en.wikipedia.org/wiki/Snap_\(software\)) is
663
+ unable to use system fonts. If you've install Visual Studio Code via Snap, remove it by running
664
+ `sudo snap remove code` and install the official `.deb` build from the
665
+ [Visual Studio Code website](https://code.visualstudio.com/Download).
666
+ - **GNOME Terminal** (the default Ubuntu terminal): Open *Terminal → Preferences* and click on the
667
+ selected profile under *Profiles*. Check *Custom font* under *Text Appearance* and select
668
+ `MesloLGS NF Regular`.
669
+ - **Konsole**: Open *Settings → Edit Current Profile → Appearance*, click *Select Font* and select
670
+ `MesloLGS NF Regular`.
671
+ - **Tilix**: Open *Tilix → Preferences* and click on the selected profile under *Profiles*. Check
672
+ *Custom font* under *Text Appearance* and select `MesloLGS NF Regular`.
673
+ - **Windows Console Host** (the old thing): Click the icon in the top left corner, then
674
+ *Properties → Font* and set *Font* to `MesloLGS NF`.
675
+ - **Windows Terminal** by Microsoft (the new thing): Open *Settings* (<kbd>Ctrl+,</kbd>), click
676
+ either on the selected profile under *Profiles* or on *Defaults*, click *Appearance* and set
677
+ *Font face* to `MesloLGS NF`.
678
+ - **Conemu**: Open *Setup → General → Fonts* and set *Main console font* to `MesloLGS NF`.
679
+ - **IntelliJ** (and other IDEs by Jet Brains): Open *IDE → Edit → Preferences → Editor →
680
+ Color Scheme → Console Font*. Select *Use console font instead of the default* and set the font
681
+ name to `MesloLGS NF`.
682
+ - **Termux**: Type `p10k configure` and answer `Yes` when asked whether to install
683
+ *Meslo Nerd Font*.
684
+ - **Blink**: Type `config`, go to *Appearance*, tap *Add a new font*, tap *Open Gallery*, select
685
+ *MesloLGS NF.css*, tap *import* and type `exit` in the home view to reload the font.
686
+ - **Tabby** (formerly **Terminus**): Open *Settings → Appearance* and set *Font* to `MesloLGS NF`.
687
+ - **Terminator**: Open *Preferences* using the context menu. Under *Profiles* select the *General*
688
+ tab (should be selected already), uncheck *Use the system fixed width font* (if not already)
689
+ and select `MesloLGS NF Regular`. Exit the Preferences dialog by clicking *Close*.
690
+ - **Guake**: Right Click on an open terminal and open *Preferences*. Under *Appearance*
691
+ tab, uncheck *Use the system fixed width font* (if not already) and select `MesloLGS NF Regular`.
692
+ Exit the Preferences dialog by clicking *Close*.
693
+ - **MobaXterm**: Open *Settings* → *Configuration* → *Terminal* → (under *Terminal look and feel*)
694
+ and change *Font* to `MesloLGS NF`. If you have *sessions*, you need to change the font in each
695
+ of them through *Settings* → right click on an individual session → *Edit Session* → *Terminal
696
+ Settings* → *Font settings*.
697
+ - **Asbrú Connection Manager**: Open *Preferences → Local Shell Options → Look and Feel*, enable
698
+ *Use these personal options* and change *Font:* under *Terminal UI* to `MesloLGS NF Regular`.
699
+ To change the font for the remote host connections, go to *Preferences → Terminal Options →
700
+ Look and Feel* and change *Font:* under *Terminal UI* to `MesloLGS NF Regular`.
701
+ - **Warp**: Open Warp and Navigate to *Settings* then *Appearance*. Scroll down to *Text* Section
702
+ and under *"Terminal Font"*, select the `MesloLGS NF` font.
703
+ - **WSLtty**: Right click on an open terminal and then on *Options*. In the *Text* section, under
704
+ *Font*, click *"Select..."* and set Font to `MesloLGS NF Regular`.
705
+ - **Yakuake**: Click *≡* → *Manage Profiles* → *New* → *Appearance*. Click *Choose* next to the
706
+ *Font* dropdown, select `MesloLGS NF` and click *OK*. Click *OK* to save the profile. Select the
707
+ new profile and click *Set as Default*.
708
+ - **Alacritty**: Create or open `~/.config/alacritty/alacritty.toml` and add the following
709
+ section to it:
710
+ ```toml
711
+ [font.normal]
712
+ family = "MesloLGS NF"
713
+ ```
714
+ - **foot**: Create or open `~/.config/foot/foot.ini` and add the following section to it:
715
+ ```ini
716
+ font=MesloLGS NF:size=12
717
+ ```
718
+ - **kitty**: Create or open `~/.config/kitty/kitty.conf` and add the following line to it:
719
+ ```text
720
+ font_family MesloLGS NF
721
+ ```
722
+ Restart kitty by closing all sessions and opening a new session.
723
+ - **puTTY**: Set *Window* → *Appearance* → *Font* to `MesloLGS NF`. Requires puTTY
724
+ version >= 0.75.
725
+ - **WezTerm**: Create or open `$HOME/.config/wezterm/wezterm.lua` and add the following:
726
+ ```lua
727
+ local wezterm = require 'wezterm';
728
+ return {
729
+ font = wezterm.font("MesloLGS NF"),
730
+ }
731
+ ```
732
+ If the file already exists, only add the line with the font to the existing return.
733
+ Also add the first line if it is not already present.
734
+ - **urxvt**: Create or open `~/.Xresources` and add the following line to it:
735
+ ```text
736
+ URxvt.font: xft:MesloLGS NF:size=11
737
+ ```
738
+ You can adjust the font size to your preference. After changing the config run
739
+ `xrdb ~/.Xresources` to reload it. The new config is applied to all new terminals.
740
+ - **xterm**: Create or open `~/.Xresources` and add the following line to it:
741
+ ```text
742
+ xterm*faceName: MesloLGS NF
743
+ ```
744
+ After changing the config run `xrdb ~/.Xresources` to reload it. The new config is applied to
745
+ all new terminals.
746
+ - **Zed**: Open `~/.config/zed/settings.json` and set `terminal.font_family` to `"MesloLGS NF"`.
747
+ ```jsonc
748
+ {
749
+ "terminal": {
750
+ "font_family": "MesloLGS NF"
751
+ },
752
+ // Other settings.
753
+ }
754
+ ```
755
+ - Crostini (Linux on Chrome OS): Open
756
+ chrome-untrusted://terminal/html/nassh_preferences_editor.html, set *Text font family* to
757
+ `'MesloLGS NF'` (including the quotes) and *Custom CSS (inline text)* to the following:
758
+ ```css
759
+ @font-face {
760
+ font-family: "MesloLGS NF";
761
+ src: url("https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/MesloLGS%20NF%20Regular.ttf");
762
+ font-weight: normal;
763
+ font-style: normal;
764
+ }
765
+ @font-face {
766
+ font-family: "MesloLGS NF";
767
+ src: url("https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/MesloLGS%20NF%20Bold.ttf");
768
+ font-weight: bold;
769
+ font-style: normal;
770
+ }
771
+ @font-face {
772
+ font-family: "MesloLGS NF";
773
+ src: url("https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/MesloLGS%20NF%20Italic.ttf");
774
+ font-weight: normal;
775
+ font-style: italic;
776
+ }
777
+ @font-face {
778
+ font-family: "MesloLGS NF";
779
+ src: url("https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/MesloLGS%20NF%20Bold%20Italic.ttf");
780
+ font-weight: bold;
781
+ font-style: italic;
782
+ }
783
+ ```
784
+ **_CAVEAT_**: If you open the normal terminal preferences these settings will be overwritten.
785
+ - **Deepin Terminal**: Create or open `~/.config/deepin/deepin-terminal/config.conf` and add the following section
786
+ to it:
787
+ ```ini
788
+ [basic.interface.font]
789
+ value = "MesloLGS NF"
790
+ ```
791
+ - **Ghostty**: Open *Menu → Open Configuration* (Linux) or *Ghostty → Settings...* (Mac) and add
792
+ the following line:
793
+ ```text
794
+ font-family = "MesloLGS NF"
795
+ ```
796
+ 1. Run `p10k configure` to generate a new `~/.p10k.zsh`. The old config may work
797
+ incorrectly with the new font.
798
+
799
+ _Using a different terminal and know how to set the font for it? Share your knowledge by sending a
800
+ PR to expand the list!_
801
+
802
+ ## Try it in Docker
803
+
804
+ Try Powerlevel10k in Docker. You can safely make any changes to the file system while trying out
805
+ the theme. Once you exit Zsh, the container is deleted.
806
+
807
+ ```zsh
808
+ docker run -e TERM -e COLORTERM -e LC_ALL=C.UTF-8 -it --rm alpine sh -uec '
809
+ apk add git zsh nano vim
810
+ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
811
+ echo "source ~/powerlevel10k/powerlevel10k.zsh-theme" >>~/.zshrc
812
+ cd ~/powerlevel10k
813
+ exec zsh'
814
+ ```
815
+
816
+ *Tip*: Install [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k) before
817
+ running the Docker command to get access to all prompt styles.
818
+
819
+ *Tip*: Run `p10k configure` while in Docker to try a different prompt style.
820
+
821
+ ## License
822
+
823
+ Powerlevel10k is released under the
824
+ [MIT license](https://github.com/romkatv/powerlevel10k/blob/master/LICENSE).
825
+
826
+ ## FAQ
827
+
828
+ - [How do I update Powerlevel10k?](#how-do-i-update-powerlevel10k)
829
+ - [How do I uninstall Powerlevel10k?](#how-do-i-uninstall-powerlevel10k)
830
+ - [How do I install Powerlevel10k on a machine without Internet access?](#how-do-i-install-powerlevel10k-on-a-machine-without-internet-access)
831
+ - [Where can I ask for help and report bugs?](#where-can-i-ask-for-help-and-report-bugs)
832
+ - [Which aspects of shell and terminal does Powerlevel10k affect?](#which-aspects-of-shell-and-terminal-does-powerlevel10k-affect)
833
+ - [I'm using Powerlevel9k with Oh My Zsh. How do I migrate?](#im-using-powerlevel9k-with-oh-my-zsh-how-do-i-migrate)
834
+ - [Is it really fast?](#is-it-really-fast)
835
+ - [How do I configure instant prompt?](#how-do-i-configure-instant-prompt)
836
+ - [How do I initialize direnv when using instant prompt?](#how-do-i-initialize-direnv-when-using-instant-prompt)
837
+ - [How do I export GPG_TTY when using instant prompt?](#how-do-i-export-gpg_tty-when-using-instant-prompt)
838
+ - [What do different symbols in Git status mean?](#what-do-different-symbols-in-git-status-mean)
839
+ - [How do I change the format of Git status?](#how-do-i-change-the-format-of-git-status)
840
+ - [Why is Git status from `$HOME/.git` not displayed in prompt?](#why-is-git-status-from-homegit-not-displayed-in-prompt)
841
+ - [Why does Git status sometimes appear grey and then gets colored after a short period of time?](#why-does-git-status-sometimes-appear-grey-and-then-gets-colored-after-a-short-period-of-time)
842
+ - [How do I add username and/or hostname to prompt?](#how-do-i-add-username-andor-hostname-to-prompt)
843
+ - [Why some prompt segments appear and disappear as I'm typing?](#why-some-prompt-segments-appear-and-disappear-as-im-typing)
844
+ - [How do I change prompt colors?](#how-do-i-change-prompt-colors)
845
+ - [Why does Powerlevel10k spawn extra processes?](#why-does-powerlevel10k-spawn-extra-processes)
846
+ - [Are there configuration options that make Powerlevel10k slow?](#are-there-configuration-options-that-make-powerlevel10k-slow)
847
+ - [Is Powerlevel10k fast to load?](#is-powerlevel10k-fast-to-load)
848
+ - [What is the relationship between Powerlevel9k and Powerlevel10k?](#what-is-the-relationship-between-powerlevel9k-and-powerlevel10k)
849
+ - [Does Powerlevel10k always render exactly the same prompt as Powerlevel9k given the same config?](#does-powerlevel10k-always-render-exactly-the-same-prompt-as-powerlevel9k-given-the-same-config)
850
+ - [What is the best prompt style in the configuration wizard?](#what-is-the-best-prompt-style-in-the-configuration-wizard)
851
+ - [How to make Powerlevel10k look like robbyrussell Oh My Zsh theme?](#how-to-make-powerlevel10k-look-like-robbyrussell-oh-my-zsh-theme)
852
+ - [Can prompts for completed commands display error status for *those* commands instead of the commands preceding them?](#can-prompts-for-completed-commands-display-error-status-for-those-commands-instead-of-the-commands-preceding-them)
853
+ - [What is the minimum supported Zsh version?](#what-is-the-minimum-supported-zsh-version)
854
+ - [How were these screenshots and animated gifs created?](#how-were-these-screenshots-and-animated-gifs-created)
855
+ - [How was the recommended font created?](#how-was-the-recommended-font-created)
856
+ - [How to package Powerlevel10k for distribution?](#how-to-package-powerlevel10k-for-distribution)
857
+
858
+ ### How do I update Powerlevel10k?
859
+
860
+ The command to update Powerlevel10k depends on how it was installed.
861
+
862
+ | Installation | Update command |
863
+ |-------------------------------|-------------------------------------------------------------|
864
+ | [Manual](#manual) | `git -C ~/powerlevel10k pull` |
865
+ | [Oh My Zsh](#oh-my-zsh) | `git -C "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k" pull` |
866
+ | [Prezto](#prezto) | `zprezto-update` |
867
+ | [Zim](#zim) | `zimfw update` |
868
+ | [Antigen](#antigen) | `antigen update` |
869
+ | [Antidote](#antidote) | `antidote update` |
870
+ | [Zplug](#zplug) | `zplug update` |
871
+ | [Zgen](#zgen) | `zgen update` |
872
+ | [Zplugin](#zplugin) | `zplugin update` |
873
+ | [Zinit](#zinit) | `zinit update` |
874
+ | [Zi](#zi) | `zi update` |
875
+ | [Zap](#zap) | `zap update` |
876
+ | [Homebrew](#homebrew) | `brew update && brew upgrade` |
877
+ | [Arch Linux](#arch-linux) | `yay -S --noconfirm zsh-theme-powerlevel10k-git` |
878
+ | [Alpine Linux](#alpine-linux) | `apk update && apk upgrade` |
879
+
880
+ **IMPORTANT**: Restart Zsh after updating Powerlevel10k. [Do not use `source ~/.zshrc`](
881
+ #weird-things-happen-after-typing-source-zshrc).
882
+
883
+ ### How do I uninstall Powerlevel10k?
884
+
885
+ 1. Remove all references to "p10k" from `~/.zshrc`. You might have this snippet at the top:
886
+ ```zsh
887
+ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
888
+ source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
889
+ fi
890
+ ```
891
+ And this at the bottom:
892
+ ```zsh
893
+ [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
894
+ ```
895
+ These are added by the [configuration wizard](#configuration-wizard). Remove them.
896
+ 2. Remove all references to "powerlevel10k" from `~/.zshrc`, `~/.zpreztorc` and `~/.zimrc` (some
897
+ of these files may be missing -- this is normal). These references have been added manually by
898
+ yourself when installing Powerlevel10k. Refer to the [installation instructions](#installation)
899
+ if you need a reminder.
900
+ 3. Verify that all references to "p10k" and "powerlevel10k" are gone from `~/.zshrc`, `~/.zpreztorc`
901
+ and `~/.zimrc`.
902
+ ```zsh
903
+ grep -E 'p10k|powerlevel10k' ~/.zshrc ~/.zpreztorc ~/.zimrc 2>/dev/null
904
+ ```
905
+ If this command produces output, there are still references to "p10k" or "powerlevel10k". You
906
+ need to remove them.
907
+ 4. Delete Powerlevel10k configuration file. This file is created by the
908
+ [configuration wizard](#configuration-wizard) and may contain manual edits by yourself.
909
+ ```zsh
910
+ rm -f ~/.p10k.zsh
911
+ ```
912
+ 5. Delete Powerlevel10k source files. These files have been downloaded when you've installed
913
+ Powerlevel10k. The command to delete them depends on which installation method you'd chosen.
914
+ Refer to the [installation instructions](#installation) if you need a reminder.
915
+
916
+ | Installation | Uninstall command |
917
+ |-------------------------------|------------------------------------------------------------------|
918
+ | [Manual](#manual) | `rm -rf ~/powerlevel10k` |
919
+ | [Oh My Zsh](#oh-my-zsh) | `rm -rf -- "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"` |
920
+ | [Prezto](#prezto) | n/a |
921
+ | [Zim](#zim) | `zimfw uninstall` |
922
+ | [Antigen](#antigen) | `antigen purge romkatv/powerlevel10k` |
923
+ | [Antidote](#antidote) | `antidote purge romkatv/powerlevel10k` |
924
+ | [Zplug](#zplug) | `zplug clean` |
925
+ | [Zgen](#zgen) | `zgen reset` |
926
+ | [Zplugin](#zplugin) | `zplugin delete romkatv/powerlevel10k` |
927
+ | [Zinit](#zinit) | `zinit delete romkatv/powerlevel10k` |
928
+ | [Zi](#zi) | `zi delete romkatv/powerlevel10k` |
929
+ | [Zap](#zap) | `zsh -ic 'zap clean'` |
930
+ | [Homebrew](#homebrew) | `brew uninstall powerlevel10k` |
931
+ | [Arch Linux](#arch-linux) | `yay -R --noconfirm zsh-theme-powerlevel10k-git` |
932
+ | [Alpine Linux](#alpine-linux) | `apk del zsh-theme-powerlevel10k` |
933
+ 6. Restart Zsh. [Do not use `source ~/.zshrc`](#weird-things-happen-after-typing-source-zshrc).
934
+ 7. Delete Powerlevel10k cache files.
935
+ ```zsh
936
+ rm -rf -- "${XDG_CACHE_HOME:-$HOME/.cache}"/p10k-*(N) "${XDG_CACHE_HOME:-$HOME/.cache}"/gitstatus
937
+ ```
938
+
939
+ ### How do I install Powerlevel10k on a machine without Internet access?
940
+
941
+ 1. Run this command on the machine without Internet access:
942
+ ```sh
943
+ uname -sm | tr '[A-Z]' '[a-z]'
944
+ ```
945
+ 2. Run these commands on a machine connected to the Internet after replacing the value of
946
+ `target_uname` with the output of the previous command:
947
+ ```sh
948
+ target_uname="replace this with the output of the previous command"
949
+ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
950
+ GITSTATUS_CACHE_DIR="$HOME"/powerlevel10k/gitstatus/usrbin ~/powerlevel10k/gitstatus/install -f -s "${target_uname% *}" -m "${target_uname#* }"
951
+ ```
952
+ 3. Copy `~/powerlevel10k` from the machine connected to the Internet to the one without Internet
953
+ access.
954
+ 4. Add `source ~/powerlevel10k/powerlevel10k.zsh-theme` to `~/.zshrc` on the machine without
955
+ Internet access:
956
+ ```zsh
957
+ echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
958
+ ```
959
+ 5. If `~/.zshrc` on the machine without Internet access sets `ZSH_THEME`, remove that line.
960
+ ```zsh
961
+ sed -i.bak '/^ZSH_THEME=/d' ~/.zshrc
962
+ ```
963
+
964
+ To update, remove `~/powerlevel10k` on both machines and repeat steps 1-3.
965
+
966
+ ### Where can I ask for help and report bugs?
967
+
968
+ The best way to ask for help and to report bugs is to [open an issue](
969
+ https://github.com/romkatv/powerlevel10k/issues).
970
+
971
+ [Gitter](
972
+ https://gitter.im/powerlevel10k/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
973
+ is another option.
974
+
975
+ If all else fails, email roman.perepelitsa@gmail.com.
976
+
977
+ If necessary, encrypt your communication with [this PGP key](
978
+ https://api.github.com/users/romkatv/gpg_keys).
979
+
980
+ ### Which aspects of shell and terminal does Powerlevel10k affect?
981
+
982
+ Powerlevel10k defines prompt and nothing else. It sets [prompt-related options](
983
+ http://zsh.sourceforge.net/Doc/Release/Options.html#Prompting), and parameters `PS1` and `RPS1`.
984
+
985
+ ![Prompt Highlight](
986
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/prompt-highlight.png)
987
+
988
+ Everything within the highlighted areas on the screenshot is produced by Powerlevel10k.
989
+ Powerlevel10k has no control over the terminal content or colors outside these areas.
990
+
991
+ Powerlevel10k does not affect:
992
+
993
+ - Terminal window/tab title.
994
+ - Colors used by `ls`.
995
+ - The behavior of `git` command.
996
+ - The content and style of <kbd>Tab</kbd> completions.
997
+ - Command line colors (syntax highlighting, autosuggestions, etc.).
998
+ - Key bindings.
999
+ - Aliases.
1000
+ - Prompt parameters other than `PS1` and `RPS1`.
1001
+ - Zsh options other than those [related to prompt](
1002
+ http://zsh.sourceforge.net/Doc/Release/Options.html#Prompting).
1003
+ - The set of available commands. Powerlevel10k does not install any new commands
1004
+ with the only exception of `p10k`.
1005
+
1006
+ ### I'm using Powerlevel9k with Oh My Zsh. How do I migrate?
1007
+
1008
+ 1. Run this command:
1009
+ ```zsh
1010
+ # Add powerlevel10k to the list of Oh My Zsh themes.
1011
+ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"
1012
+ # Replace ZSH_THEME="powerlevel9k/powerlevel9k" with ZSH_THEME="powerlevel10k/powerlevel10k".
1013
+ sed -i.bak 's/powerlevel9k/powerlevel10k/g' ~/.zshrc
1014
+ # Restart Zsh.
1015
+ exec zsh
1016
+ ```
1017
+ 2. *Optional but highly recommended:*
1018
+ 1. Install [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k).
1019
+ 1. Type `p10k configure` and choose your favorite prompt style.
1020
+
1021
+ *Related:*
1022
+ - [Powerlevel9k compatibility.](#powerlevel9k-compatibility)
1023
+ - [Does Powerlevel10k always render exactly the same prompt as Powerlevel9k given the same config?](
1024
+ #does-powerlevel10k-always-render-exactly-the-same-prompt-as-powerlevel9k-given-the-same-config)
1025
+ - [Extra or missing spaces in prompt compared to Powerlevel9k.](
1026
+ #extra-or-missing-spaces-in-prompt-compared-to-powerlevel9k)
1027
+ - [Configuration wizard.](#configuration-wizard)
1028
+
1029
+ ### Is it really fast?
1030
+
1031
+ Yes. See [zsh-bench](https://github.com/romkatv/zsh-bench) or a direct comparison with
1032
+ [Powerlevel9k](https://asciinema.org/a/NHRjK3BMePw66jtRVY2livHwZ) and
1033
+ [Spaceship](https://asciinema.org/a/253094).
1034
+
1035
+ ### <a name='how-do-i-enable-instant-prompt'></a>How do I configure instant prompt?
1036
+
1037
+ See [instant prompt](#instant-prompt) to learn about instant prompt. This section explains how you
1038
+ can enable and configure it and lists caveats that you should be aware of.
1039
+
1040
+ Instant prompt can be enabled either through `p10k configure` or by manually adding the following
1041
+ code snippet at the top of `~/.zshrc`:
1042
+
1043
+ ```zsh
1044
+ # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
1045
+ # Initialization code that may require console input (password prompts, [y/n]
1046
+ # confirmations, etc.) must go above this block; everything else may go below.
1047
+ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
1048
+ source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
1049
+ fi
1050
+ ```
1051
+
1052
+ It's important that you copy the lines verbatim. Don't replace `source` with something else, don't
1053
+ call `zcompile`, don't redirect output, etc.
1054
+
1055
+ When instant prompt is enabled, for the duration of Zsh initialization standard input is redirected
1056
+ to `/dev/null` and standard output with standard error are redirected to a temporary file. Once Zsh
1057
+ is fully initialized, standard file descriptors are restored and the content of the temporary file
1058
+ is printed out.
1059
+
1060
+ When using instant prompt, you should carefully check any output that appears on Zsh startup as it
1061
+ may indicate that initialization has been altered, or perhaps even broken, by instant prompt.
1062
+ Initialization code that may require console input, such as asking for a keyring password or for a
1063
+ *[y/n]* confirmation, must be moved above the instant prompt preamble in `~/.zshrc`. Initialization
1064
+ code that merely prints to console but never reads from it will work correctly with instant prompt,
1065
+ although output that normally has colors may appear uncolored. You can either leave it be, suppress
1066
+ the output, or move it above the instant prompt preamble.
1067
+
1068
+ Here's an example of `~/.zshrc` that breaks when instant prompt is enabled:
1069
+
1070
+ ```zsh
1071
+ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
1072
+ source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
1073
+ fi
1074
+
1075
+ keychain id_rsa --agents ssh # asks for password
1076
+ chatty-script # spams to stdout even when everything is fine
1077
+ # ...
1078
+ ```
1079
+
1080
+ Fixed version:
1081
+
1082
+ ```zsh
1083
+ keychain id_rsa --agents ssh # moved before instant prompt
1084
+
1085
+ # OK to perform console I/O before this point.
1086
+ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
1087
+ source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
1088
+ fi
1089
+ # From this point on, until zsh is fully initialized, console input won't work and
1090
+ # console output may appear uncolored.
1091
+
1092
+ chatty-script >/dev/null # spam output suppressed
1093
+ # ...
1094
+ ```
1095
+
1096
+ If `POWERLEVEL9K_INSTANT_PROMPT` is unset or set to `verbose`, Powerlevel10k will print a warning
1097
+ when it detects console output during initialization to bring attention to potential issues. You can
1098
+ silence this warning (without suppressing console output) with `POWERLEVEL9K_INSTANT_PROMPT=quiet`.
1099
+ This is recommended if some initialization code in `~/.zshrc` prints to console and it's infeasible
1100
+ to move it above the instant prompt preamble or to suppress its output. You can completely disable
1101
+ instant prompt with `POWERLEVEL9K_INSTANT_PROMPT=off`. Do this if instant prompt breaks Zsh
1102
+ initialization and you don't know how to fix it.
1103
+
1104
+ The value of `POWERLEVEL9K_INSTANT_PROMPT` can be changed by running `p10k configure` and selecting
1105
+ the appropriate option on the *Instant Prompt* screen. Alternatively, you can search for
1106
+ `POWERLEVEL9K_INSTANT_PROMPT` in the existing `~/.p10k.zsh` and change its value there.
1107
+
1108
+ *Note*: Instant prompt requires Zsh >= 5.4. It's OK to enable it even when using an older version of
1109
+ Zsh but it won't do anything.
1110
+
1111
+ *FAQ*:
1112
+
1113
+ - [How do I initialize direnv when using instant prompt?](
1114
+ #how-do-i-initialize-direnv-when-using-instant-prompt)
1115
+ - [How do I export GPG_TTY when using instant prompt?](
1116
+ #how-do-i-export-gpg_tty-when-using-instant-prompt)
1117
+
1118
+ ### How do I initialize direnv when using instant prompt?
1119
+
1120
+ If you've enabled [instant prompt](#instant-prompt), you should have these lines at the top of
1121
+ `~/.zshrc`:
1122
+
1123
+ ```zsh
1124
+ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
1125
+ source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
1126
+ fi
1127
+ ```
1128
+
1129
+ To initialize direnv you need to add one line above that block and one line below it.
1130
+
1131
+ ```zsh
1132
+ (( ${+commands[direnv]} )) && emulate zsh -c "$(direnv export zsh)"
1133
+
1134
+ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
1135
+ source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
1136
+ fi
1137
+
1138
+ (( ${+commands[direnv]} )) && emulate zsh -c "$(direnv hook zsh)"
1139
+ ```
1140
+
1141
+ *Related*: [How do I export GPG_TTY when using instant prompt?](
1142
+ #how-do-i-export-gpg_tty-when-using-instant-prompt)
1143
+
1144
+ ### How do I export GPG_TTY when using instant prompt?
1145
+
1146
+ You can export `GPG_TTY` like this anywhere in `~/.zshrc`:
1147
+
1148
+ ```zsh
1149
+ export GPG_TTY=$TTY
1150
+ ```
1151
+
1152
+ This works whether you are using [instant prompt](#instant-prompt) or not. It works even if you
1153
+ aren't using powerlevel10k. As an extra bonus, it's much faster than the commonly used
1154
+ `export GPG_TTY=$(tty)`.
1155
+
1156
+ *Related*: [How do I initialize direnv when using instant prompt?](
1157
+ #how-do-i-initialize-direnv-when-using-instant-prompt)
1158
+
1159
+ ### What do different symbols in Git status mean?
1160
+
1161
+ When using Lean, Classic or Rainbow style, Git status may look like this:
1162
+
1163
+ ```text
1164
+ feature:master wip ⇣42⇡42 ⇠42⇢42 *42 merge ~42 +42 !42 ?42
1165
+ ```
1166
+
1167
+ | Symbol | Meaning | Source |
1168
+ | --------- | -------------------------------------------------------------------- | ------------------------------------------------------ |
1169
+ | `feature` | current branch; replaced with `#tag` or `@commit` if not on a branch | `git status --ignore-submodules=dirty` |
1170
+ | `master` | remote tracking branch; only shown if different from local branch | `git rev-parse --abbrev-ref --symbolic-full-name @{upstream}` |
1171
+ | `wip` | the latest commit's summary contains "wip" or "WIP" | `git show --pretty=%s --no-patch HEAD` |
1172
+ | `=` | up to date with the remote (neither ahead nor behind) | `git rev-list --count HEAD...@{upstream}` |
1173
+ | `⇣42` | this many commits behind the remote | `git rev-list --right-only --count HEAD...@{upstream}` |
1174
+ | `⇡42` | this many commits ahead of the remote | `git rev-list --left-only --count HEAD...@{upstream}` |
1175
+ | `⇠42` | this many commits behind the push remote | `git rev-list --right-only --count HEAD...@{push}` |
1176
+ | `⇢42` | this many commits ahead of the push remote | `git rev-list --left-only --count HEAD...@{push}` |
1177
+ | `*42` | this many stashes | `git stash list` |
1178
+ | `merge` | repository state | `git status --ignore-submodules=dirty` |
1179
+ | `~42` | this many merge conflicts | `git status --ignore-submodules=dirty` |
1180
+ | `+42` | this many staged changes | `git status --ignore-submodules=dirty` |
1181
+ | `!42` | this many unstaged changes | `git status --ignore-submodules=dirty` |
1182
+ | `?42` | this many untracked files | `git status --ignore-submodules=dirty` |
1183
+ | `─` | the number of staged, unstaged or untracked files is unknown | `echo $POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY` or `git config --get bash.showDirtyState` |
1184
+
1185
+ *Related*: [How do I change the format of Git status?](#how-do-i-change-the-format-of-git-status)
1186
+
1187
+ ### How do I change the format of Git status?
1188
+
1189
+ To change the format of Git status, open `~/.p10k.zsh`, search for `my_git_formatter` and edit its
1190
+ source code.
1191
+
1192
+ *Related*: [What do different symbols in Git status mean?](
1193
+ #what-do-different-symbols-in-git-status-mean)
1194
+
1195
+ ### Why is Git status from `$HOME/.git` not displayed in prompt?
1196
+
1197
+ When using Lean, Classic or Rainbow style, `~/.p10k.zsh` contains the following parameter:
1198
+
1199
+ ```zsh
1200
+ # Don't show Git status in prompt for repositories whose workdir matches this pattern.
1201
+ # For example, if set to '~', the Git repository at $HOME/.git will be ignored.
1202
+ # Multiple patterns can be combined with '|': '~(|/foo)|/bar/baz/*'.
1203
+ typeset -g POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN='~'
1204
+ ```
1205
+
1206
+ To see Git status for `$HOME/.git` in prompt, open `~/.p10k.zsh` and remove
1207
+ `POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN`.
1208
+
1209
+ ### Why does Git status sometimes appear grey and then gets colored after a short period of time?
1210
+
1211
+ tl;dr: When Git status in prompt is greyed out, it means Powerlevel10k is currently computing
1212
+ up-to-date Git status in the background. Prompt will get automatically refreshed when this
1213
+ computation completes.
1214
+
1215
+ When your current directory is within a Git repository, Powerlevel10k computes up-to-date Git
1216
+ status after every command. If the repository is large, or the machine is slow, this computation
1217
+ can take quite a bit of time. If it takes longer than 10 milliseconds (configurable via
1218
+ `POWERLEVEL9K_VCS_MAX_SYNC_LATENCY_SECONDS`), Powerlevel10k displays the last known Git status in
1219
+ grey and continues to compute up-to-date Git status in the background. When the computation
1220
+ completes, Powerlevel10k refreshes prompt with new information, this time with colored Git status.
1221
+
1222
+ When using *Rainbow* style, Git status is displayed as black on grey while it's still being
1223
+ computed. Depending on the terminal color palette, this may be difficult to read. In this case you
1224
+ might want to change the background color to something lighter for more contrast. To do that, open
1225
+ `~/.p10k.zsh`, search for `POWERLEVEL9K_VCS_LOADING_BACKGROUND`, uncomment it if it's commented out,
1226
+ and change the value.
1227
+
1228
+ ```zsh
1229
+ typeset -g POWERLEVEL9K_VCS_LOADING_BACKGROUND=244
1230
+ ```
1231
+
1232
+ Type `source ~/.p10k.zsh` to apply your changes to the current Zsh session.
1233
+
1234
+ *Related*: [How do I change prompt colors?](#how-do-i-change-prompt-colors)
1235
+
1236
+ ### How do I add username and/or hostname to prompt?
1237
+
1238
+ When using Lean, Classic or Rainbow style, prompt shows `username@hostname` when you are logged in
1239
+ as root or via SSH. There is little value in showing `username` or `hostname` when you are logged in
1240
+ to your local machine as a normal user. So the absence of `username@hostname` in your prompt is an
1241
+ indication that you are working locally and that you aren't root. You can change it, however.
1242
+
1243
+ Open `~/.p10k.zsh`. Close to the top you can see the most important parameters that define which
1244
+ segments are shown in your prompt. All generally useful prompt segments are listed in there. Some of
1245
+ them are enabled, others are commented out. One of them is of interest to you.
1246
+
1247
+ ```zsh
1248
+ typeset -g POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(
1249
+ ...
1250
+ context # user@hostname
1251
+ ...
1252
+ )
1253
+ ```
1254
+
1255
+ Search for `context` to find the section in the config that lists parameters specific to this prompt
1256
+ segment. You should see the following lines:
1257
+
1258
+ ```zsh
1259
+ # Don't show context unless running with privileges or in SSH.
1260
+ # Tip: Remove the next line to always show context.
1261
+ typeset -g POWERLEVEL9K_CONTEXT_{DEFAULT,SUDO}_{CONTENT,VISUAL_IDENTIFIER}_EXPANSION=
1262
+ ```
1263
+
1264
+ If you follow the tip and remove (or comment out) the last line, you'll always see
1265
+ `username@hostname` in prompt. You can change the format to just `username`, or change the color, by
1266
+ adjusting the values of parameters nearby. There are plenty of comments to help you navigate.
1267
+
1268
+ You can also move `context` to a different position in `POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS` or even
1269
+ to `POWERLEVEL9K_LEFT_PROMPT_ELEMENTS`.
1270
+
1271
+ ### Why some prompt segments appear and disappear as I'm typing?
1272
+
1273
+ Prompt segments can be configured to be shown only when the current command you are typing invokes
1274
+ a relevant tool.
1275
+
1276
+ ```zsh
1277
+ # Show prompt segment "kubecontext" only when the command you are typing invokes
1278
+ # invokes kubectl, helm, or kubens.
1279
+ typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens'
1280
+ ```
1281
+
1282
+ Configs created by `p10k configure` may contain parameters of this kind. To customize when different
1283
+ prompt segments are shown, open `~/.p10k.zsh`, search for `SHOW_ON_COMMAND` and either remove these
1284
+ parameters or change their values.
1285
+
1286
+ You can also define a function in `~/.zshrc` to toggle the display of a prompt segment between
1287
+ *always* and *on command*. This is similar to `kubeon`/`kubeoff` from
1288
+ [kube-ps1](https://github.com/jonmosco/kube-ps1).
1289
+
1290
+ ```zsh
1291
+ function kube-toggle() {
1292
+ if (( ${+POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND} )); then
1293
+ unset POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND
1294
+ else
1295
+ POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens'
1296
+ fi
1297
+ p10k reload
1298
+ if zle; then
1299
+ zle push-input
1300
+ zle accept-line
1301
+ fi
1302
+ }
1303
+ ```
1304
+
1305
+ Invoke this function by typing `kube-toggle`. You can also bind it to a key by adding two more lines
1306
+ to `~/.zshrc`:
1307
+
1308
+ ```zsh
1309
+ zle -N kube-toggle
1310
+ bindkey '^]' kube-toggle # ctrl-] to toggle kubecontext in powerlevel10k prompt
1311
+ ```
1312
+
1313
+ ### How do I change prompt colors?
1314
+
1315
+ You can either [change the color palette used by your terminal](
1316
+ #change-the-color-palette-used-by-your-terminal) or
1317
+ [set colors through Powerlevel10k configuration parameters](
1318
+ #set-colors-through-Powerlevel10k-configuration-parameters).
1319
+
1320
+ #### Change the color palette used by your terminal
1321
+
1322
+ How exactly you change the terminal color palette (a.k.a. color scheme, or theme) depends on the
1323
+ kind of terminal you are using. Look around in terminal's settings/preferences or consult
1324
+ documentation.
1325
+
1326
+ When you change the terminal color palette, it usually affects only the first 16 colors, numbered
1327
+ from 0 to 15. In order to see any effect on Powerlevel10k prompt, you need to use prompt style that
1328
+ utilizes these low-numbered colors. Type `p10k configure` and select *Rainbow*, *Lean* → *8 colors*
1329
+ or *Pure* → *Original*. Other styles use higher-numbered colors, so they look the same in any
1330
+ terminal color palette.
1331
+
1332
+ #### Set colors through Powerlevel10k configuration parameters
1333
+
1334
+ Open `~/.p10k.zsh`, search for "color", "foreground" and "background" and change values of
1335
+ appropriate parameters. For example, here's how you can set the foreground of `time` prompt segment
1336
+ to bright red:
1337
+
1338
+ ```zsh
1339
+ typeset -g POWERLEVEL9K_TIME_FOREGROUND=160
1340
+ ```
1341
+
1342
+ Colors are specified using numbers from 0 to 255. Colors from 0 to 15 look differently in different
1343
+ terminals. Many terminals also support customization of these colors through color palettes
1344
+ (a.k.a. color schemes, or themes). Colors from 16 to 255 always look the same.
1345
+
1346
+ Type `source ~/.p10k.zsh` to apply your changes to the current Zsh session.
1347
+
1348
+ To see how different numbered colors look in your terminal, run the following command:
1349
+
1350
+ ```zsh
1351
+ for i in {0..255}; do print -Pn "%K{$i} %k%F{$i}${(l:3::0:)i}%f " ${${(M)$((i%6)):#3}:+$'\n'}; done
1352
+ ```
1353
+
1354
+ If your terminal supports truecolor, you can use 24-bit colors in the `#RRGGBB` format in addition
1355
+ to the numbered colors.
1356
+
1357
+ ```zsh
1358
+ typeset -g POWERLEVEL9K_TIME_FOREGROUND='#FF0000'
1359
+ ```
1360
+
1361
+ *Related:*
1362
+ - [Directory is difficult to see in prompt when using Rainbow style.](
1363
+ #directory-is-difficult-to-see-in-prompt-when-using-rainbow-style)
1364
+ - [Incorrect foreground color in VSCode Terminal.](#incorrect-foreground-color-in-vscode-terminal)
1365
+
1366
+ By default, VSCode Terminal may arbitrarily replace the foreground color of your choice with a
1367
+ different color. This behavior can be
1368
+ [turned off](https://code.visualstudio.com/docs/terminal/appearance#_minimum-contrast-ratio) in
1369
+ VSCode settings.
1370
+
1371
+ ### Why does Powerlevel10k spawn extra processes?
1372
+
1373
+ Powerlevel10k uses [gitstatus](https://github.com/romkatv/gitstatus) as the backend behind `vcs`
1374
+ prompt; gitstatus spawns `gitstatusd` and `zsh`. See
1375
+ [gitstatus](https://github.com/romkatv/gitstatus) for details. Powerlevel10k may also spawn `zsh`
1376
+ to perform computation without blocking prompt. To avoid security hazard, these background processes
1377
+ aren't shared by different interactive shells. They terminate automatically when the parent `zsh`
1378
+ process terminates or runs `exec(3)`.
1379
+
1380
+ ### Are there configuration options that make Powerlevel10k slow?
1381
+
1382
+ No, Powerlevel10k is always fast, with any configuration you throw at it. If you have noticeable
1383
+ prompt latency when using Powerlevel10k, please
1384
+ [open an issue](https://github.com/romkatv/powerlevel10k/issues).
1385
+
1386
+ ### Is Powerlevel10k fast to load?
1387
+
1388
+ Yes. See [zsh-bench](https://github.com/romkatv/zsh-bench).
1389
+
1390
+ ### What is the relationship between Powerlevel9k and Powerlevel10k?
1391
+
1392
+ Powerlevel10k was forked from Powerlevel9k in March 2019 after a week-long discussion in
1393
+ [powerlevel9k#1170](https://github.com/Powerlevel9k/powerlevel9k/issues/1170). Powerlevel9k was
1394
+ already a mature project with a large user base and a release cycle measured in months. Powerlevel10k
1395
+ was spun off to iterate on performance improvements and new features at much higher pace.
1396
+
1397
+ Powerlevel9k and Powerlevel10k are independent projects. When using one, you shouldn't install the
1398
+ other. Issues should be filed against the project that you actually use. There are no individuals
1399
+ that have commit rights in both repositories. All bug fixes and new features committed to
1400
+ Powerlevel9k repository get ported to Powerlevel10k.
1401
+
1402
+ Over time, virtually all code in Powerlevel10k has been rewritten. There is currently no meaningful
1403
+ overlap between the implementations of Powerlevel9k and Powerlevel10k.
1404
+
1405
+ Powerlevel10k is committed to maintaining backward compatibility with all configs indefinitely. This
1406
+ commitment covers all configuration parameters recognized by Powerlevel9k (see
1407
+ [Powerlevel9k compatibility](#powerlevel9k-compatibility)) and additional parameters that only
1408
+ Powerlevel10k understands. Names of all parameters in Powerlevel10k start with `POWERLEVEL9K_` for
1409
+ consistency.
1410
+
1411
+ ### Does Powerlevel10k always render exactly the same prompt as Powerlevel9k given the same config?
1412
+
1413
+ Almost. There are a few differences.
1414
+
1415
+ - By default only `git` vcs backend is enabled in Powerlevel10k. If you need `svn` and `hg`, add
1416
+ them to `POWERLEVEL9K_VCS_BACKENDS`. These backends aren't yet optimized in Powerlevel10k, so
1417
+ enabling them will make prompt *very slow*.
1418
+ - Powerlevel10k doesn't support `POWERLEVEL9K_VCS_SHOW_SUBMODULE_DIRTY=true`.
1419
+ - Powerlevel10k strives to be bug-compatible with Powerlevel9k but not when it comes to egregious
1420
+ bugs. If you accidentally rely on these bugs, your prompt will differ between Powerlevel9k and
1421
+ Powerlevel10k. Some examples:
1422
+ - Powerlevel9k ignores some options that are set after the theme is sourced while Powerlevel10k
1423
+ respects all options. If you see different icons in Powerlevel9k and Powerlevel10k, you've
1424
+ probably defined `POWERLEVEL9K_MODE` before sourcing the theme. This parameter gets ignored
1425
+ by Powerlevel9k but honored by Powerlevel10k. If you want your prompt to look in Powerlevel10k
1426
+ the same as in Powerlevel9k, remove `POWERLEVEL9K_MODE`.
1427
+ - Powerlevel9k doesn't respect `ZLE_RPROMPT_INDENT`. As a result, right prompt in Powerlevel10k
1428
+ can have an extra space at the end compared to Powerlevel9k. Set `ZLE_RPROMPT_INDENT=0` if you
1429
+ don't want that space. More details in
1430
+ [troubleshooting](#extra-space-without-background-on-the-right-side-of-right-prompt).
1431
+ - Powerlevel9k has inconsistent spacing around icons. This was fixed in Powerlevel10k. Set
1432
+ `POWERLEVEL9K_LEGACY_ICON_SPACING=true` to get the same spacing as in Powerlevel9k. More
1433
+ details in [troubleshooting](#extra-or-missing-spaces-around-icons).
1434
+ - There are dozens more bugs in Powerlevel9k that don't exist in Powerlevel10k.
1435
+
1436
+ If you notice any other changes in prompt appearance when switching from Powerlevel9k to
1437
+ Powerlevel10k, please [open an issue](https://github.com/romkatv/powerlevel10k/issues).
1438
+
1439
+ ### What is the best prompt style in the configuration wizard?
1440
+
1441
+ There are as many opinions on what constitutes the best prompt as there are people. It mostly comes
1442
+ down to personal preference. There are, however, a few hidden implications of different choices.
1443
+
1444
+ Pure style is an exact replication of [Pure Zsh theme](https://github.com/sindresorhus/pure). It
1445
+ exists to ease the migration for users of this theme. Unless you are one of them, choose Lean
1446
+ style over Pure.
1447
+
1448
+ If you want to confine prompt colors to the selected terminal color palette (say, *Solarized Dark*),
1449
+ use *Rainbow*, *Lean* → *8 colors* or *Pure* → *Original*. Other styles use fixed colors and thus
1450
+ look the same in any terminal color palette.
1451
+
1452
+ All styles except Pure have an option to use *ASCII* charset. Prompt will look less pretty but will
1453
+ render correctly with all fonts and in all locales.
1454
+
1455
+ If you enable transient prompt, take advantage of two-line prompt. You'll get the benefit of
1456
+ extra space for typing commands without the usual drawback of reduced scrollback density. Having
1457
+ all commands start from the same offset is also nice.
1458
+
1459
+ Similarly, if you enable transient prompt, sparse prompt (with an empty line before prompt) is a
1460
+ great choice.
1461
+
1462
+ If you are using vi keymap, choose prompt with `prompt_char` in it (shown as green `❯` in the
1463
+ wizard). This symbol changes depending on vi mode: `❯`, `❮`, `V`, `▶` for insert, command, visual
1464
+ and replace mode respectively. When a command fails, the symbol turns red. *Lean* style always has
1465
+ `prompt_char` in it. *Rainbow* and *Classic* styles have it only in the two-line configuration
1466
+ without left frame.
1467
+
1468
+ If you value horizontal space or prefer minimalist aesthetics:
1469
+
1470
+ - Use a monospace font, such as [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k).
1471
+ Non-monospace fonts require extra space after icons that are larger than a single column.
1472
+ - Use Lean style. Compared to Classic and Rainbow, it saves two characters per prompt segment.
1473
+ - Disable *current time* and *frame*.
1474
+ - Use *few icons*. The extra icons enabled by the *many icons* option primarily serve decorative
1475
+ function. Informative icons, such as background job indicator, will be shown either way.
1476
+
1477
+ *Note*: You can run configuration wizard as many times as you like. Type `p10k configure` to try new
1478
+ prompt style.
1479
+
1480
+ ### How to make Powerlevel10k look like robbyrussell Oh My Zsh theme?
1481
+
1482
+ Use [this config](
1483
+ https://github.com/romkatv/powerlevel10k/blob/master/config/p10k-robbyrussell.zsh).
1484
+
1485
+ You can either download it, save as `~/.p10k.zsh` and `source ~/.p10k.zsh` from `~/.zshrc`, or
1486
+ source `p10k-robbyrussell.zsh` directly from your cloned `powerlevel10k` repository.
1487
+
1488
+ ### Can prompts for completed commands display error status for *those* commands instead of the commands preceding them?
1489
+
1490
+ No. When you hit *ENTER* and the command you've typed starts running, its error status isn't yet
1491
+ known, so it cannot be shown in prompt. When the command completes, the error status gets known but
1492
+ it's no longer possible to update prompt for *that* command. This is why the error status for every
1493
+ command is reflected in the *next* prompt.
1494
+
1495
+ For details, see [this post on /r/zsh](
1496
+ https://www.reddit.com/r/zsh/comments/eg49ff/powerlevel10k_prompt_history_exit_code_colors/fc5huku).
1497
+
1498
+ ### What is the minimum supported Zsh version?
1499
+
1500
+ Zsh 5.3 or newer should work. Fast startup requires Zsh >= 5.4.
1501
+
1502
+ ### How were these screenshots and animated gifs created?
1503
+
1504
+ All screenshots and animated gifs were recorded in GNOME Terminal with
1505
+ [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k) and Tango Dark color palette with
1506
+ custom background color (`#171A1B` instead of `#2E3436` -- twice as dark).
1507
+
1508
+ ![GNOME Terminal Color Settings](
1509
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/gnome-terminal-colors.png)
1510
+
1511
+ Syntax highlighting, where present, was provided by [zsh-syntax-highlighting](
1512
+ https://github.com/zsh-users/zsh-syntax-highlighting).
1513
+
1514
+ ### How was the recommended font created?
1515
+
1516
+ [The recommended font](#meslo-nerd-font-patched-for-powerlevel10k) is the product of many
1517
+ individuals. Its origin is *Bitstream Vera Sans Mono*, which has given birth to *Menlo*, which in
1518
+ turn has spawned *Meslo*. Finally, extra glyphs have been added to *Meslo* with scripts forked
1519
+ from Nerd Fonts. The final font is released under the terms of
1520
+ [Apache License](
1521
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/MesloLGS%20NF%20License.txt).
1522
+
1523
+ MesloLGS NF font can be recreated with the following command (requires `git` and `docker`):
1524
+
1525
+ ```zsh
1526
+ git clone --depth=1 https://github.com/romkatv/nerd-fonts.git
1527
+ cd nerd-fonts
1528
+ ./build 'Meslo/S/*'
1529
+ ```
1530
+
1531
+ If everything goes well, four `ttf` files will appear in `./out`.
1532
+
1533
+ ### How to package Powerlevel10k for distribution?
1534
+
1535
+ It's currently neither easy nor recommended to package and distribute Powerlevel10k. There are no
1536
+ instructions you can follow that would allow you to easily update your package when new versions of
1537
+ Powerlevel10k are released. This may change in the future but not soon.
1538
+
1539
+ ## Troubleshooting
1540
+
1541
+ - [`[oh-my-zsh] theme 'powerlevel10k/powerlevel10k' not found`](#oh-my-zsh-theme-powerlevel10kpowerlevel10k-not-found)
1542
+ - [Question mark in prompt](#question-mark-in-prompt)
1543
+ - [Icons, glyphs or powerline symbols don't render](#icons-glyphs-or-powerline-symbols-dont-render)
1544
+ - [Sub-pixel imperfections around powerline symbols](#sub-pixel-imperfections-around-powerline-symbols)
1545
+ - [Error: character not in range](#error-character-not-in-range)
1546
+ - [Cursor is in the wrong place](#cursor-is-in-the-wrong-place)
1547
+ - [Prompt wrapping around in a weird way](#prompt-wrapping-around-in-a-weird-way)
1548
+ - [Right prompt is in the wrong place](#right-prompt-is-in-the-wrong-place)
1549
+ - [Configuration wizard runs automatically every time Zsh is started](#configuration-wizard-runs-automatically-every-time-zsh-is-started)
1550
+ - [Some prompt styles are missing from the configuration wizard](#some-prompt-styles-are-missing-from-the-configuration-wizard)
1551
+ - [Cannot install the recommended font](#cannot-install-the-recommended-font)
1552
+ - [Extra or missing spaces in prompt compared to Powerlevel9k](#extra-or-missing-spaces-in-prompt-compared-to-powerlevel9k)
1553
+ - [Extra space without background on the right side of right prompt](#extra-space-without-background-on-the-right-side-of-right-prompt)
1554
+ - [Extra or missing spaces around icons](#extra-or-missing-spaces-around-icons)
1555
+ - [Weird things happen after typing `source ~/.zshrc`](#weird-things-happen-after-typing-source-zshrc)
1556
+ - [Transient prompt stops working after some time](#transient-prompt-stops-working-after-some-time)
1557
+ - [Cannot make Powerlevel10k work with my plugin manager](#cannot-make-powerlevel10k-work-with-my-plugin-manager)
1558
+ - [Directory is difficult to see in prompt when using Rainbow style](#directory-is-difficult-to-see-in-prompt-when-using-rainbow-style)
1559
+ - [Incorrect foreground color in VSCode Terminal.](#incorrect-foreground-color-in-vscode-terminal)
1560
+ - [Horrific mess when resizing terminal window](#horrific-mess-when-resizing-terminal-window)
1561
+ - [Icons cut off in Konsole](#icons-cut-off-in-konsole)
1562
+ - [Arch Linux logo has a dot in the bottom right corner](#arch-linux-logo-has-a-dot-in-the-bottom-right-corner)
1563
+ - [Incorrect git status in prompt](#incorrect-git-status-in-prompt)
1564
+
1565
+ ### `[oh-my-zsh] theme 'powerlevel10k/powerlevel10k' not found`
1566
+
1567
+ When opening a terminal, or starting zsh manually, you may encounter this error message:
1568
+
1569
+ ```text
1570
+ [oh-my-zsh] theme 'powerlevel10k/powerlevel10k' not found
1571
+ ```
1572
+
1573
+ 1. First, run `typeset -p P9K_VERSION` to check whether Powerlevel10k has been loaded.
1574
+ - If `typeset -p P9K_VERSION` succeeds and prints something like `typeset P9K_VERSION=1.19.14`
1575
+ (the version could be different), remove the following line from `~/.zshrc`:
1576
+ ```zsh
1577
+ ZSH_THEME="powerlevel10k/powerlevel10k"
1578
+ ```
1579
+ - If `typeset -p P9K_VERSION` fails with the error `typeset: no such variable: P9K_VERSION`, run
1580
+ the following command:
1581
+ ```zsh
1582
+ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"
1583
+ ```
1584
+ 2. Restart Zsh with `exec zsh`.
1585
+
1586
+ ### Question mark in prompt
1587
+
1588
+ If it looks like a regular `?`, that's normal. It means you have untracked files in the current Git
1589
+ repository. Type `git status` to see these files. You can change this symbol or disable the display
1590
+ of untracked files altogether. Search for `untracked files` in `~/.p10k.zsh`.
1591
+
1592
+ *FAQ*: [What do different symbols in Git status mean?](
1593
+ #what-do-different-symbols-in-git-status-mean)
1594
+
1595
+ You can also get a weird-looking question mark in your prompt if your terminal's font is missing
1596
+ some glyphs. See [icons, glyphs or powerline symbols don't render](
1597
+ #icons-glyphs-or-powerline-symbols-dont-render).
1598
+
1599
+ ### Icons, glyphs or powerline symbols don't render
1600
+
1601
+ Restart your terminal, [install the recommended font](#meslo-nerd-font-patched-for-powerlevel10k)
1602
+ and run `p10k configure`.
1603
+
1604
+ ### Sub-pixel imperfections around powerline symbols
1605
+
1606
+ ![Powerline Prompt Imperfections](
1607
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/powerline-imperfections.png)
1608
+
1609
+ There are three imperfections on the screenshot. From left to right:
1610
+
1611
+ 1. A thin blue line (a sub-pixel gap) between the content of a prompt segment and the following
1612
+ powerline connection.
1613
+ 1. Incorrect alignment of a powerline connection and the following prompt segment. The connection
1614
+ appears shifted to the right.
1615
+ 1. A thin red line below a powerline connection. The connection appears shifted up.
1616
+
1617
+ Zsh themes don't have down-to-pixel control over the terminal content. Everything you see on the
1618
+ screen is made of monospace characters. A white powerline prompt segment is made of text on white
1619
+ background followed by U+E0B0 (a right-pointing triangle).
1620
+
1621
+ ![Powerline Prompt Imperfections](
1622
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/powerline-anatomy.png)
1623
+
1624
+ If Powerlevel10k prompt has imperfections around powerline symbols, you'll see exactly the same
1625
+ imperfections with all powerline themes (Agnoster, Powerlevel9k, Powerline, etc.)
1626
+
1627
+ There are several things you can try to deal with these imperfections:
1628
+
1629
+ - Try [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k). If you are already using
1630
+ it, switching to another font may help but is unlikely.
1631
+ - Change terminal font size one point up or down. For example, in iTerm2 powerline prompt looks
1632
+ perfect at font sizes 11 and 13 but breaks down at 12.
1633
+ - Enable builtin powerline glyphs in terminal settings if your terminal supports it (iTerm2 does).
1634
+ - Change font hinting and/or anti-aliasing mode in the terminal settings.
1635
+ - Shift all text one pixel up/down/left/right if your terminal has an option to do so.
1636
+ - Try a different terminal.
1637
+
1638
+ A more radical solution is to switch to prompt style without background. Type `p10k configure` and
1639
+ select *Lean*. This style has a modern lightweight look. As a bonus, it doesn't suffer from
1640
+ rendering imperfections that afflict powerline-style prompt.
1641
+
1642
+ ### Error: character not in range
1643
+
1644
+ Type `echo '\u276F'`. If you get an error saying "zsh: character not in range", your locale
1645
+ doesn't support UTF-8. You need to fix it. If you are running Zsh over SSH, see
1646
+ [this](https://github.com/romkatv/powerlevel10k/issues/153#issuecomment-518347833). If you are
1647
+ running Zsh locally, Google "set UTF-8 locale in *your OS*".
1648
+
1649
+ ### Cursor is in the wrong place
1650
+
1651
+ Type `echo '\u276F'`. If you get an error saying "zsh: character not in range", see the
1652
+ [previous section](#zsh-character-not-in-range).
1653
+
1654
+ If the `echo` command prints `❯` but the cursor is still in the wrong place, install
1655
+ [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k) and run
1656
+ `p10k configure`.
1657
+
1658
+ If this doesn't help, add `unset ZLE_RPROMPT_INDENT` at the bottom of `~/.zshrc`.
1659
+
1660
+ Still having issues? Run the following command to diagnose the problem:
1661
+
1662
+ ```zsh
1663
+ () {
1664
+ emulate -L zsh
1665
+ setopt err_return no_unset
1666
+ local text
1667
+ print -rl -- 'Select a part of your prompt from the terminal window and paste it below.' ''
1668
+ read -r '?Prompt: ' text
1669
+ local -i len=${(m)#text}
1670
+ local frame="+-${(pl.$len..-.):-}-+"
1671
+ print -lr -- $frame "| $text |" $frame
1672
+ }
1673
+ ```
1674
+
1675
+ #### If the prompt line aligns with the frame
1676
+
1677
+ ```text
1678
+ +------------------------------+
1679
+ | romka@adam ✓ ~/powerlevel10k |
1680
+ +------------------------------+
1681
+ ```
1682
+
1683
+ If the output of the command is aligned for every part of your prompt (left and right), this
1684
+ indicates a bug in the theme or your config. Use this command to diagnose it:
1685
+
1686
+ ```zsh
1687
+ print -rl -- ${(eq+)PROMPT} ${(eq+)RPROMPT}
1688
+ ```
1689
+
1690
+ Look for `%{...%}` and backslash escapes in the output. If there are any, they are the likely
1691
+ culprits. Open an issue if you get stuck.
1692
+
1693
+ #### If the prompt line is longer than the frame
1694
+
1695
+ ```text
1696
+ +-----------------------------+
1697
+ | romka@adam ✓ ~/powerlevel10k |
1698
+ +-----------------------------+
1699
+ ```
1700
+
1701
+ This is usually caused by a terminal bug or misconfiguration that makes it print ambiguous-width
1702
+ characters as double-width instead of single width. For example,
1703
+ [this issue](https://github.com/romkatv/powerlevel10k/issues/165).
1704
+
1705
+ #### If the prompt line is shorter than the frame and is mangled
1706
+
1707
+ ```text
1708
+ +------------------------------+
1709
+ | romka@adam ✓~/powerlevel10k |
1710
+ +------------------------------+
1711
+ ```
1712
+
1713
+ Note that this prompt is different from the original as it's missing a space after the check mark.
1714
+
1715
+ This can be caused by a low-level bug in macOS. See
1716
+ [this issue](https://github.com/romkatv/powerlevel10k/issues/241).
1717
+
1718
+ This can also happen if prompt contains glyphs designated as "wide" in the Unicode standard and your
1719
+ terminal incorrectly displays them as non-wide. Terminals suffering from this limitation include
1720
+ Konsole, Hyper and the integrated VSCode Terminal. The solution is to use a different terminal or
1721
+ remove all wide glyphs from prompt.
1722
+
1723
+ #### If the prompt line is shorter than the frame and is not mangled
1724
+
1725
+ ```text
1726
+ +--------------------------------+
1727
+ | romka@adam ✓ ~/powerlevel10k |
1728
+ +--------------------------------+
1729
+ ```
1730
+
1731
+ This can be caused by misconfigured locale. See
1732
+ [this issue](https://github.com/romkatv/powerlevel10k/issues/251).
1733
+
1734
+ ### Prompt wrapping around in a weird way
1735
+
1736
+ See [cursor is in the wrong place](#cursor-is-in-the-wrong-place).
1737
+
1738
+ ### Right prompt is in the wrong place
1739
+
1740
+ See [cursor is in the wrong place](#cursor-is-in-the-wrong-place).
1741
+
1742
+ ### Configuration wizard runs automatically every time Zsh is started
1743
+
1744
+ When Powerlevel10k starts, it automatically runs `p10k configure` if no `POWERLEVEL9K_*`
1745
+ parameters are defined. Based on your prompt style choices, the configuration wizard creates
1746
+ `~/.p10k.zsh` with a bunch of `POWERLEVEL9K_*` parameters in it and adds a line to `~/.zshrc` to
1747
+ source this file. The next time you start Zsh, the configuration wizard shouldn't run automatically.
1748
+ If it does, this means the evaluation of `~/.zshrc` terminates prematurely before it reaches the
1749
+ line that sources `~/.p10k.zsh`. This most often happens due to syntax errors in `~/.zshrc`. These
1750
+ errors get hidden by the configuration wizard screen, so you don't notice them. When you exit
1751
+ configuration wizard, look for error messages. You can also use
1752
+ `POWERLEVEL9K_DISABLE_CONFIGURATION_WIZARD=true zsh` to start Zsh without automatically running the
1753
+ configuration wizard. Once you can see the errors, fix `~/.zshrc` to get rid of them.
1754
+
1755
+ ### Some prompt styles are missing from the configuration wizard
1756
+
1757
+ If Zsh version is below 5.7.1 or `COLORTERM` environment variable is neither `24bit` nor
1758
+ `truecolor`, configuration wizard won't offer Pure style with Snazzy color scheme. *Fix*: Install
1759
+ Zsh >= 5.7.1 and use a terminal with truecolor support. Verify with `print -P '%F{#ff0000}red%f'`.
1760
+
1761
+ If the terminal can display fewer than 256 colors, configuration wizard preselects Lean style with
1762
+ 8 colors. All other styles require at least 256 colors. *Fix*: Use a terminal with 256 color support
1763
+ and make sure that `TERM` environment variable is set correctly. Verify with
1764
+ `print $terminfo[colors]`.
1765
+
1766
+ If there is no UTF-8 locale on the system, configuration wizard won't offer prompt styles that use
1767
+ Unicode characters. *Fix*: Install a UTF-8 locale. Verify with `locale -a`.
1768
+
1769
+ Another case in which configuration wizard may not offer Unicode prompt styles is when the
1770
+ `MULTIBYTE` shell option is disabled. *Fix*: Enable the `MULTIBYTE` option, or rather don't disable
1771
+ it (this option is enabled in Zsh by default). Verify with `print -r -- ${options[MULTIBYTE]}`.
1772
+
1773
+ When `MULTIBYTE` is enabled and a UTF-8 locale is available, the first few questions asked by the
1774
+ configuration wizard assess capabilities of the terminal font. If your answers indicate that some
1775
+ glyphs don't render correctly, configuration wizard won't offer prompt styles that use them. *Fix*:
1776
+ Restart your terminal and install
1777
+ [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k). Verify by running
1778
+ `p10k configure` and checking that all glyphs render correctly.
1779
+
1780
+ ### Cannot install the recommended font
1781
+
1782
+ Once you download [the recommended font](#meslo-nerd-font-patched-for-powerlevel10k),
1783
+ you can install it just like any other font. Google "how to install fonts on *your OS*".
1784
+
1785
+ ### Extra or missing spaces in prompt compared to Powerlevel9k
1786
+
1787
+ tl;dr: Add `ZLE_RPROMPT_INDENT=0` and `POWERLEVEL9K_LEGACY_ICON_SPACING=true` to `~/.zshrc` to get
1788
+ the same prompt spacing as in Powerlevel9k.
1789
+
1790
+ When using Powerlevel10k with a Powerlevel9k config, you might get additional spaces in prompt here
1791
+ and there. These come in two flavors.
1792
+
1793
+ #### Extra space without background on the right side of right prompt
1794
+
1795
+ tl;dr: Add `ZLE_RPROMPT_INDENT=0` to `~/.zshrc` to get rid of that space.
1796
+
1797
+ From [Zsh documentation](
1798
+ http://zsh.sourceforge.net/Doc/Release/Parameters.html#index-ZLE_005fRPROMPT_005fINDENT):
1799
+
1800
+ > `ZLE_RPROMPT_INDENT <S>`
1801
+ >
1802
+ > If set, used to give the indentation between the right hand side of the right prompt in the line
1803
+ > editor as given by `RPS1` or `RPROMPT` and the right hand side of the screen. If not set, the
1804
+ > value `1` is used.
1805
+ >
1806
+ > Typically this will be used to set the value to `0` so that the prompt appears flush with the
1807
+ > right hand side of the screen.
1808
+
1809
+ Powerlevel10k respects this parameter. If you set `ZLE_RPROMPT_INDENT=1` (or leave it unset, which
1810
+ is the same thing as setting it to `1`), you'll get an empty space to the right of right prompt. If
1811
+ you set `ZLE_RPROMPT_INDENT=0`, your prompt will go to the edge of the terminal. This is how it
1812
+ works in every theme except Powerlevel9k.
1813
+
1814
+ ![ZLE_RPROMPT_INDENT: Powerlevel10k vs Powerlevel9k](
1815
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/p9k-vs-p10k-zle-rprompt-indent.png)
1816
+
1817
+ Powerlevel9k issue: [powerlevel9k#1292](https://github.com/Powerlevel9k/powerlevel9k/issues/1292).
1818
+ It's been fixed in the development branch of Powerlevel9k but the fix hasn't yet made it to
1819
+ `master`.
1820
+
1821
+ Add `ZLE_RPROMPT_INDENT=0` to `~/.zshrc` to get the same spacing on the right edge of prompt as in
1822
+ Powerlevel9k.
1823
+
1824
+ *Note:* Several versions of Zsh have bugs that get triggered when you set `ZLE_RPROMPT_INDENT=0`.
1825
+ Powerlevel10k can work around these bugs when using powerline prompt style. If you notice visual
1826
+ artifacts in prompt, or wrong cursor position, try removing `ZLE_RPROMPT_INDENT` from `~/.zshrc`.
1827
+
1828
+ #### Extra or missing spaces around icons
1829
+
1830
+ tl;dr: Add `POWERLEVEL9K_LEGACY_ICON_SPACING=true` to `~/.zshrc` to get the same spacing around
1831
+ icons as in Powerlevel9k.
1832
+
1833
+ Spacing around icons in Powerlevel9k is inconsistent.
1834
+
1835
+ ![ZLE_RPROMPT_INDENT: Powerlevel10k vs Powerlevel9k](
1836
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/p9k-vs-p10k-icon-spacing.png)
1837
+
1838
+ This inconsistency is a constant source of annoyance, so it was fixed in Powerlevel10k. You can add
1839
+ `POWERLEVEL9K_LEGACY_ICON_SPACING=true` to `~/.zshrc` to get the same spacing around icons as in
1840
+ Powerlevel9k.
1841
+
1842
+ *Note:* It's not a good idea to define `POWERLEVEL9K_LEGACY_ICON_SPACING` when using
1843
+ `p10k configure`.
1844
+
1845
+ ### Weird things happen after typing `source ~/.zshrc`
1846
+
1847
+ It's almost always a bad idea to run `source ~/.zshrc`, whether you are using Powerlevel10k or not.
1848
+ This command may result in random errors, misbehaving code and progressive slowdown of Zsh.
1849
+
1850
+ If you've made changes to `~/.zshrc` or to files sourced by it, restart Zsh to apply them. The most
1851
+ reliable way to do this is to type `exit` and then start a new Zsh session. You can also use
1852
+ `exec zsh`. While not exactly equivalent to complete Zsh restart, this command is much more reliable
1853
+ than `source ~/.zshrc`.
1854
+
1855
+ ### Transient prompt stops working after some time
1856
+
1857
+ See [weird things happen after typing `source ~/.zshrc`](
1858
+ #weird-things-happen-after-typing-source-zshrc).
1859
+
1860
+ ### Cannot make Powerlevel10k work with my plugin manager
1861
+
1862
+ If the [installation instructions](#installation) didn't work for you, try disabling your current
1863
+ theme (so that you end up with no theme) and then installing Powerlevel10k manually.
1864
+
1865
+ 1. Disable the current theme in your framework / plugin manager.
1866
+
1867
+ - **oh-my-zsh:** Open `~/.zshrc` and remove the line that sets `ZSH_THEME`. It might look like this:
1868
+ `ZSH_THEME="powerlevel9k/powerlevel9k"`.
1869
+ - **zplug:** Open `~/.zshrc` and remove the `zplug` command that refers to your current theme. For
1870
+ example, if you are currently using Powerlevel9k, look for
1871
+ `zplug bhilburn/powerlevel9k, use:powerlevel9k.zsh-theme`.
1872
+ - **prezto:** Open `~/.zpreztorc` and put `zstyle :prezto:module:prompt theme off` in it. Remove
1873
+ any other command that sets `theme` such as `zstyle :prezto:module:prompt theme powerlevel9k`.
1874
+ - **antigen:** Open `~/.zshrc` and remove the line that sets `antigen theme`. It might look like
1875
+ this: `antigen theme powerlevel9k/powerlevel9k`.
1876
+
1877
+ 2. Install Powerlevel10k manually.
1878
+
1879
+ ```zsh
1880
+ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
1881
+ echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
1882
+ ```
1883
+
1884
+ This method of installation won't make anything slower or otherwise sub-par.
1885
+
1886
+ ### Directory is difficult to see in prompt when using Rainbow style
1887
+
1888
+ In Rainbow style the current working directory is shown with bright white text on blue background.
1889
+ The white is fixed and always looks the same but the appearance of "blue" is defined by your
1890
+ terminal color palette. If it's very light, it may be difficult to see white text on it.
1891
+
1892
+ There are several ways to fix this.
1893
+
1894
+ - Type `p10k configure` and choose a more readable prompt style.
1895
+ - [Change terminal color palette](#change-the-color-palette-used-by-your-terminal). Try Tango Dark
1896
+ or Solarized Dark, or change just the "blue" color.
1897
+ - [Change directory background and/or foreground color](#set-colors-through-Powerlevel10k-configuration-parameters).
1898
+ The parameters you are looking for are called `POWERLEVEL9K_DIR_BACKGROUND`,
1899
+ `POWERLEVEL9K_DIR_FOREGROUND`, `POWERLEVEL9K_DIR_SHORTENED_FOREGROUND`,
1900
+ `POWERLEVEL9K_DIR_ANCHOR_FOREGROUND` and `POWERLEVEL9K_DIR_ANCHOR_BOLD`. You can find them in
1901
+ `~/.p10k.zsh`.
1902
+
1903
+ *Related*: [Incorrect foreground color in VSCode Terminal.](#incorrect-foreground-color-in-vscode-terminal)
1904
+
1905
+ ### Incorrect foreground color in VSCode Terminal
1906
+
1907
+ By default, VSCode Terminal may arbitrarily replace the foreground color of your choice with a
1908
+ different color. This behavior can be
1909
+ [turned off](https://code.visualstudio.com/docs/terminal/appearance#_minimum-contrast-ratio) in
1910
+ VSCode settings.
1911
+
1912
+ ### Horrific mess when resizing terminal window
1913
+
1914
+ When you resize a terminal window horizontally back and forth a few times, you might see this ugly
1915
+ picture.
1916
+
1917
+ ![Powerlevel10k Resizing Mess](
1918
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resizing-mess.png)
1919
+
1920
+ tl;dr: This issue arises when a terminal reflows Zsh prompt upon resizing. It isn't specific to
1921
+ Powerlevel10k. See [mitigation](#mitigation).
1922
+
1923
+ *Note: This section [used to say](
1924
+ https://github.com/romkatv/powerlevel10k/blob/dce00cdb5daaa8a519df234a7012ba3257b644d4/README.md#horrific-mess-when-resizing-terminal-window)
1925
+ that the problem is caused by a bug in Zsh. While it's true that it's possible to avoid the problem
1926
+ in many circumstances by modifying Zsh, it cannot be completely resolved this way. Thus it's unfair
1927
+ to pin the blame on Zsh.*
1928
+
1929
+ #### The anatomy of the problem
1930
+
1931
+ The issue is manifested when the vertical distance between the start of the current prompt and the
1932
+ cursor (henceforth `VD`) changes when the terminal window is resized.
1933
+
1934
+ When a terminal window gets shrunk horizontally, there are two ways for a terminal to handle long
1935
+ lines that no longer fit: *reflow* or *truncate*.
1936
+
1937
+ Terminal content before shrinking:
1938
+
1939
+ ![Terminal Content Before Shrinking](
1940
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resize-original.png)
1941
+
1942
+ Terminal reflows text when shrinking:
1943
+
1944
+ ![Terminal Reflows Text When Shrinking](
1945
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resize-reflow.png)
1946
+
1947
+ Terminal truncates text when shrinking:
1948
+
1949
+ ![Terminal Truncates Text When Shrinking](
1950
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resize-truncate.png)
1951
+
1952
+ Reflowing strategy can change the height of terminal content. If such content happens to be between
1953
+ the start of the current prompt and the cursor, Zsh will print prompt on the wrong line. Truncation
1954
+ strategy never changes the height of terminal content, so it doesn't trigger this issue.
1955
+
1956
+ Let's see how the issue plays out in slow motion. We'll start by launching `zsh -f` and pasting
1957
+ the following code:
1958
+
1959
+ ```zsh
1960
+ function pause() { read -s }
1961
+ functions -M pause 0
1962
+
1963
+ reset
1964
+ print -l {1..3}
1965
+ setopt prompt_subst
1966
+ PROMPT=$'${$((pause()))+}left>${(pl.$((COLUMNS-12))..-.)}<right\n> '
1967
+ ```
1968
+
1969
+ When `PROMPT` gets expanded, it calls `pause` to let us observe the state of the terminal. Here's
1970
+ the initial state:
1971
+
1972
+ ![Terminal Resizing Bug 1](
1973
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resize-bug-1.png)
1974
+
1975
+ Zsh keeps track of the cursor position relative to the start of the current prompt. In this case it
1976
+ knows that the cursor is one line below. When we shrink the terminal window, it looks like this:
1977
+
1978
+ ![Terminal Resizing Bug 2](
1979
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resize-bug-2.png)
1980
+
1981
+ At this point the terminal sends `SIGWINCH` to Zsh to notify it about changes in the terminal
1982
+ dimensions. Note that this signal is sent *after* the content of the terminal has been reflown.
1983
+
1984
+ When Zsh receives `SIGWINCH`, it attempts to erase the current prompt and print it anew. It goes to
1985
+ the position where it *thinks* the current prompt is -- one line above the cursor (!) -- erases all
1986
+ terminal content that follows and prints reexpanded prompt there. However, after resizing prompt is
1987
+ no longer one line above the cursor. It's two lines above! Zsh ends up printing new prompt one line
1988
+ too low.
1989
+
1990
+ ![Terminal Resizing Bug 3](
1991
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resize-bug-3.png)
1992
+
1993
+ In this case we ended up with unwanted junk content because `VD` has *increased*. When you make
1994
+ terminal window wider, `VD` can also *decrease*, which would result in the new prompt being printed
1995
+ higher than intended, potentially erasing useful content in the process.
1996
+
1997
+ Here are a few more examples where shrinking terminal window increased `VD`.
1998
+
1999
+ - Simple one-line left prompt with right prompt. No `prompt_subst`. Note that the cursor is below
2000
+ the prompt line (hit *ESC-ENTER* to get it there).
2001
+ ![Zsh Prompt That Breaks on Terminal Shrinking 1](
2002
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resize-breakable-1.png)
2003
+ - Simple one-line left prompt. No `prompt_subst`, no right prompt. Here `VD` is bound to increase
2004
+ upon terminal shrinking due to the command line wrapping around.
2005
+ ![Zsh Prompt That Breaks on Terminal Shrinking 2](
2006
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/resize-breakable-2.png)
2007
+
2008
+ #### Zsh patch
2009
+
2010
+ [This Zsh patch](https://github.com/romkatv/zsh/tree/fix-winchanged) fixes the issue on some
2011
+ terminals. The idea behind the patch is to use `sc` (save cursor) terminal capability before
2012
+ printing prompt and `rc` (restore cursor) to move cursor back to the original position when prompt
2013
+ needs to be refreshed.
2014
+
2015
+ The patch works only on terminals that reflow saved cursor position together with text when the
2016
+ terminal window is resized. The patch has no observable effect on terminals that don't reflow text
2017
+ on resize (both patched and unpatched Zsh behave correctly) and on terminals that reflow text but
2018
+ not the saved cursor position (both patched and unpatched Zsh redraw prompt at the same incorrect
2019
+ position). In other words, the patch fixes the resizing issue on some terminals while keeping the
2020
+ behavior unchanged on others.
2021
+
2022
+ There are two alternative approaches to patching Zsh that may seem to work at first glance but in
2023
+ fact don't:
2024
+
2025
+ - Instead of `sc`, use `u7` terminal capability to query the current cursor position and then `cup`
2026
+ to go back to it. This doesn't work because the absolute position of the start of the current
2027
+ prompt changes when text gets reflown.
2028
+ - Recompute `VD` based on new terminal dimensions before attempting to refresh prompt. This doesn't
2029
+ work because Zsh doesn't know whether terminal reflows text or truncates it. If Zsh could somehow
2030
+ know that the terminal reflows text, this approach still wouldn't work on terminals that
2031
+ continuously reflow text and rapid-fire `SIGWINCH` when the window is being resized. In such
2032
+ environment real terminal dimensions go out of sync with what Zsh thinks the dimensions are.
2033
+
2034
+ There is no ETA for the patch making its way into upstream Zsh. See [discussion](
2035
+ https://www.zsh.org/mla/workers//2019/msg00561.html).
2036
+
2037
+ #### Mitigation
2038
+
2039
+ There are a few mitigation options for this issue.
2040
+
2041
+ - Use [kitty](https://sw.kovidgoyal.net/kitty/) terminal version >= 0.24.0 and enable terminal-shell
2042
+ integration in Powerlevel10k by defining `POWERLEVEL9K_TERM_SHELL_INTEGRATION=true` in
2043
+ `~/.p10k.zsh`.
2044
+ - Apply [the patch](#zsh-patch) and [rebuild Zsh from source](
2045
+ https://github.com/zsh-users/zsh/blob/master/INSTALL). It won't help if you are using Alacritty,
2046
+ kitty or some other terminal that reflows text on resize but doesn't reflow saved cursor position.
2047
+ On such terminals the patch will have no visible effect.
2048
+ - Disable text reflowing on window resize in terminal settings. If your terminal doesn't have this
2049
+ setting, try a different terminal.
2050
+ - Avoid long lines between the start of prompt and cursor.
2051
+ 1. Disable ruler with `POWERLEVEL9K_SHOW_RULER=false`.
2052
+ 2. Disable prompt connection with `POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_CHAR=' '`.
2053
+ 3. Disable right frame with `POWERLEVEL9K_MULTILINE_FIRST_PROMPT_SUFFIX=''`,
2054
+ `POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_SUFFIX=''` and
2055
+ `POWERLEVEL9K_MULTILINE_LAST_PROMPT_SUFFIX=''`.
2056
+ 4. Set `POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=()`. Right prompt on the last prompt line will cause
2057
+ resizing issues only when the cursor is below it. This isn't very common, so you might want to
2058
+ keep some elements in `POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS` provided that none of them are
2059
+ succeeded by `newline`.
2060
+
2061
+ ### Icons cut off in Konsole
2062
+
2063
+ When using Konsole with a non-monospace font, icons may be cut off on the right side. Here
2064
+ "non-monospace" refers to any font with glyphs wider than a single column, or wider than two columns
2065
+ for glyphs designated as "wide" in the Unicode standard.
2066
+
2067
+ ![Icons cut off in Konsole](
2068
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/konsole-non-monospace-font.png)
2069
+
2070
+ The last line on the screenshot shows a cut off Arch Linux logo.
2071
+
2072
+ There are several mitigation options for this issue.
2073
+
2074
+ 1. Use a different terminal. Konsole is the only terminal that exhibits this behavior.
2075
+ 2. Use a monospace font.
2076
+ 3. Manually add an extra space after the icon that gets cut off. For example, if the content of
2077
+ `os_icon` prompt segment gets cut off, open `~/.p10k.zsh`, search for
2078
+ `POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION` and change it as follows:
2079
+ ```zsh
2080
+ typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='${P9K_CONTENT} ' # extra space at the end
2081
+ ```
2082
+ 4. Use a different icon that is monospace. For example, if Arch Linux logo gets cut off, add
2083
+ the following parameter to `~/.p10k.zsh`:
2084
+ ```zsh
2085
+ typeset -g POWERLEVEL9K_LINUX_ARCH_ICON='Arch' # plain "Arch" in place of a logo
2086
+ ```
2087
+ 5. Disable the display of the icon that gets cut off. For example, if the content of
2088
+ `os_icon` prompt segment gets cut off, open `~/.p10k.zsh` and remove `os_icon` from
2089
+ `POWERLEVEL9K_LEFT_PROMPT_ELEMENTS` and `POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS`.
2090
+
2091
+ *Note*: [Non-monospace fonts are not officially supported by Konsole](
2092
+ https://bugs.kde.org/show_bug.cgi?id=418553#c5).
2093
+
2094
+ ### Arch Linux logo has a dot in the bottom right corner
2095
+
2096
+ ![Arch Linux Logo with a dot](
2097
+ https://raw.githubusercontent.com/romkatv/powerlevel10k-media/master/arch-linux-logo-dot.png)
2098
+
2099
+ Some fonts have this incorrect dotted icon in bold typeface. There are two ways to fix this issue.
2100
+
2101
+ 1. Use a font with a correct Arch Linux logo in bold typeface. For example,
2102
+ [the recommended Powerlevel10k font](#meslo-nerd-font-patched-for-powerlevel10k).
2103
+ 2. Display the icon in regular (non-bold) typeface. To do this, open `~/.p10k.zsh`, search for
2104
+ `POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION` and remove `%B` from its value.
2105
+ ```zsh
2106
+ typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='${P9K_CONTENT}' # not bold
2107
+ ```
2108
+
2109
+ ### Incorrect git status in prompt
2110
+
2111
+ Powerlevel10k uses [gitstatusd](https://github.com/romkatv/gitstatus) to inspect the state of git
2112
+ repositories. The project relies on the [libgit2](https://github.com/libgit2/libgit2) library, which
2113
+ has some gaps in its implementation. Under some conditions, this may result in discrepancies between
2114
+ the real state of a git repository (reflected by `git status`) and what gets shown in the
2115
+ Powerlevel10k prompt.
2116
+
2117
+ Most notably, [libgit2 does not support `skipHash`](https://github.com/libgit2/libgit2/issues/6531).
2118
+ If you see incorrect git status in prompt, run `git config -l` and check whether `skipHash` is
2119
+ enabled. If it is, consider disabling it. Keep in mind that `skipHash` may be implicitly enabled
2120
+ when activating certain git features, such as `manyFiles`.