This commit is contained in:
parent
2f1d7a9d84
commit
8bc923428b
@ -2,8 +2,9 @@
|
|||||||
zsh:
|
zsh:
|
||||||
enabled: true
|
enabled: true
|
||||||
config:
|
config:
|
||||||
minimal: false
|
full: false
|
||||||
golang: true
|
golang: true
|
||||||
rust: true
|
rust: true
|
||||||
android: false
|
android: false
|
||||||
|
sshagent: false
|
||||||
haproxy: true
|
haproxy: true
|
||||||
|
@ -45,12 +45,16 @@ fi
|
|||||||
export ZSH=/usr/share/oh-my-zsh
|
export ZSH=/usr/share/oh-my-zsh
|
||||||
ZSH_THEME="jreese"
|
ZSH_THEME="jreese"
|
||||||
DISABLE_AUTO_UPDATE="true"
|
DISABLE_AUTO_UPDATE="true"
|
||||||
{%- if zsh.config.minimal %}
|
|
||||||
plugins=(common-aliases git)
|
plugins=(common-aliases git)
|
||||||
{%- else %}
|
{%- if zsh.config.full %}
|
||||||
plugins=(common-aliases sudo docker git ansible command-not-found systemd python nmap zsh-autosuggestions golang rust kubectl)
|
plugins+=(common-aliases sudo docker git ansible command-not-found systemd python nmap zsh-autosuggestions golang rust kubectl)
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
|
{%- if zsh.config.sshagent %}
|
||||||
|
plugins+=(ssh-agent)
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
if [[ -f $ZSH/oh-my-zsh.sh ]]
|
if [[ -f $ZSH/oh-my-zsh.sh ]]
|
||||||
then
|
then
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
Loading…
Reference in New Issue
Block a user