From 84ad770f3df25ee0068d5dd8a7c624361fb9bbe2 Mon Sep 17 00:00:00 2001 From: Keanu Date: Mon, 10 May 2021 12:52:04 +0200 Subject: [PATCH] [zsh] Added Apache2 plugin. --- zsh/plugins.zsh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zsh/plugins.zsh b/zsh/plugins.zsh index dd62b51..044dc8c 100644 --- a/zsh/plugins.zsh +++ b/zsh/plugins.zsh @@ -105,6 +105,13 @@ _plugin completions 'zsh-users/zsh-completions' "$_checkout_latest_version" # }}} +# Apache2 {{{ + # Crappy solution, but only run if it's on a Raspberry Pi 4 B + if grep -q BCM2711 /proc/cpuinfo; then + _plugin apache2 'voronkovich/apache2.plugin.zsh' + fi +# }}} + # _plugin fzf 'junegunn/fzf' "$_checkout_latest_version" \ # build='./install --bin' \ # after_load='plugin-cfg-path path prepend bin' \