updated zsh state
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2024-05-01 08:59:28 +02:00
parent 2f1d7a9d84
commit 8bc923428b
2 changed files with 9 additions and 4 deletions

View File

@ -2,8 +2,9 @@
zsh:
enabled: true
config:
minimal: false
full: false
golang: true
rust: true
android: false
sshagent: false
haproxy: true

View File

@ -45,12 +45,16 @@ fi
export ZSH=/usr/share/oh-my-zsh
ZSH_THEME="jreese"
DISABLE_AUTO_UPDATE="true"
{%- if zsh.config.minimal %}
plugins=(common-aliases git)
{%- else %}
plugins=(common-aliases sudo docker git ansible command-not-found systemd python nmap zsh-autosuggestions golang rust kubectl)
{%- if zsh.config.full %}
plugins+=(common-aliases sudo docker git ansible command-not-found systemd python nmap zsh-autosuggestions golang rust kubectl)
{%- endif %}
{%- if zsh.config.sshagent %}
plugins+=(ssh-agent)
{% endif %}
if [[ -f $ZSH/oh-my-zsh.sh ]]
then
source $ZSH/oh-my-zsh.sh