ENH don't use hostname to control zsh templating
This commit is contained in:
parent
4d0f966d12
commit
7744794b9f
|
@ -350,7 +350,7 @@ man() {
|
||||||
man "$@"
|
man "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
{{- if eq .chezmoi.hostname "petrucci4prez" }}
|
{{- if .desktop }}
|
||||||
|
|
||||||
## --------------------------------------------------
|
## --------------------------------------------------
|
||||||
# enable x11 clipboard sync
|
# enable x11 clipboard sync
|
||||||
|
@ -391,6 +391,8 @@ local paste_widgets=(
|
||||||
x11-clip-wrap-widgets copy $copy_widgets
|
x11-clip-wrap-widgets copy $copy_widgets
|
||||||
x11-clip-wrap-widgets paste $paste_widgets
|
x11-clip-wrap-widgets paste $paste_widgets
|
||||||
|
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
## --------------------------------------------------
|
## --------------------------------------------------
|
||||||
## Python/Ruby Virtual Environments
|
## Python/Ruby Virtual Environments
|
||||||
## --------------------------------------------------
|
## --------------------------------------------------
|
||||||
|
@ -399,6 +401,7 @@ x11-clip-wrap-widgets paste $paste_widgets
|
||||||
# involve a) adding a "shims" directory to PATH and then b) adding some shell
|
# involve a) adding a "shims" directory to PATH and then b) adding some shell
|
||||||
# magic to automatically call the shims
|
# magic to automatically call the shims
|
||||||
|
|
||||||
|
{{ if .development.python -}}
|
||||||
zsh-pyenv () {
|
zsh-pyenv () {
|
||||||
export PATH=$PYENV_ROOT/shims:$PATH
|
export PATH=$PYENV_ROOT/shims:$PATH
|
||||||
|
|
||||||
|
@ -410,8 +413,9 @@ zsh-pyenv () {
|
||||||
echo "pyenv not installed"
|
echo "pyenv not installed"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{ if .development.ruby -}}
|
||||||
zsh-rbenv () {
|
zsh-rbenv () {
|
||||||
gempaths="$(/usr/bin/gem env gempath):"
|
gempaths="$(/usr/bin/gem env gempath):"
|
||||||
export PATH="${gempaths//:/\/bin:}:$PATH"
|
export PATH="${gempaths//:/\/bin:}:$PATH"
|
||||||
|
@ -424,7 +428,9 @@ zsh-rbenv () {
|
||||||
echo "rbenv not installed"
|
echo "rbenv not installed"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{ if .development.conda -}}
|
||||||
zsh-conda () {
|
zsh-conda () {
|
||||||
if [[ -x $XDG_DATA_HOME/mambaforge/bin/conda ]]; then
|
if [[ -x $XDG_DATA_HOME/mambaforge/bin/conda ]]; then
|
||||||
eval "$($XDG_DATA_HOME/mambaforge/bin/conda shell.zsh hook)"
|
eval "$($XDG_DATA_HOME/mambaforge/bin/conda shell.zsh hook)"
|
||||||
|
|
Loading…
Reference in New Issue