# HG changeset patch # User Zeger Van de Vannet # Date 1671433778 -3600 # Node ID 10e3f300baead9d17bb07f64dc5c8ec1ac4f6a5c # Parent 3ebd380b6ce149efdb220ebe414e9b98382aab1f feat: add excludes for centos machines diff -r 3ebd380b6ce1 -r 10e3f300baea .chezmoiscripts/run_once_after_99-build-zsh-histdb-skim.sh.tmpl --- a/.chezmoiscripts/run_once_after_99-build-zsh-histdb-skim.sh.tmpl Fri Jan 06 06:40:51 2023 +0000 +++ b/.chezmoiscripts/run_once_after_99-build-zsh-histdb-skim.sh.tmpl Mon Dec 19 08:09:38 2022 +0100 @@ -1,4 +1,4 @@ -{{ if (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) -}} +{{ if (and (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) (ne .chezmoi.osRelease.id "centos")) -}} #!/usr/bin/env zsh source $HOME/.asdf/asdf.sh diff -r 3ebd380b6ce1 -r 10e3f300baea .chezmoiscripts/run_onchange_after_10-install-brew-packages.sh.tmpl --- a/.chezmoiscripts/run_onchange_after_10-install-brew-packages.sh.tmpl Fri Jan 06 06:40:51 2023 +0000 +++ b/.chezmoiscripts/run_onchange_after_10-install-brew-packages.sh.tmpl Mon Dec 19 08:09:38 2022 +0100 @@ -1,4 +1,4 @@ -{{ if (and (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) (ne .chezmoi.arch "arm64")) -}} +{{ if (and (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) (ne .chezmoi.arch "arm64") (ne .chezmoi.osRelease.id "centos")) -}} #!/usr/bin/env bash # Brewfile hash: {{ include "dot_Brewfile" | sha256sum }} diff -r 3ebd380b6ce1 -r 10e3f300baea .chezmoiscripts/run_onchange_after_20-install-asdf-plugins.sh.tmpl --- a/.chezmoiscripts/run_onchange_after_20-install-asdf-plugins.sh.tmpl Fri Jan 06 06:40:51 2023 +0000 +++ b/.chezmoiscripts/run_onchange_after_20-install-asdf-plugins.sh.tmpl Mon Dec 19 08:09:38 2022 +0100 @@ -1,4 +1,4 @@ -{{ if (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) -}} +{{ if (and (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) (ne .chezmoi.osRelease.id "centos")) -}} #!/usr/bin/env bash # asdf globals tools hash: {{ include "dot_tool-versions" | sha256sum }} diff -r 3ebd380b6ce1 -r 10e3f300baea dot_zshrc --- a/dot_zshrc Fri Jan 06 06:40:51 2023 +0000 +++ b/dot_zshrc Mon Dec 19 08:09:38 2022 +0100 @@ -12,7 +12,7 @@ autoload -U colors && colors -source ~/.config/zsh.env.zsh +[ -f ~/.config/zsh.env.zsh ] && source ~/.config/zsh.env.zsh source ~/.config/zsh/prompt/colors.zsh vim_ins_mode="%F{black}%K{yellow} INS %k%f"