GNU/Linux ◆ xterm-256color ◆ zsh 2525 views

To reproduce:

docker run -e LANG=en_US.UTF-8 -e TERM -it --rm archlinux/base bash -uec '
  pacman -Syu --noconfirm zsh git curl grep make binutils awk tar unzip gcc file which

  curl -fsSL https://raw.githubusercontent.com/zdharma/zplugin/master/doc/install.sh |
    sh >/dev/null
  curl -fsSL https://raw.githubusercontent.com/zdharma/pm-perf-test/master/zplugin-light/.zshrc |
    grep -vE "^(zplugin light geometry-zsh/geometry|print )" >~/.plugins

  >~/.zshrc cat <<<'\''
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
  source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
source ~/.plugins
zplugin ice depth=1; zplugin light zsh-users/zsh-autosuggestions
zplugin ice depth=1; zplugin light romkatv/powerlevel10k
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=()
print -s echo hello world'\''

  zsh -is </dev/null
  exec zsh'