These dotfiles can be installed with a one-line shell command:
BINDIR="${HOME}/.local/bin" TAG="latest" sh \
-c "$(curl -fsLS get.chezmoi.io)" -- init --apply tbjers
Or if you have wget
:
BINDIR="${HOME}/.local/bin" TAG="latest" sh \
-c "$(wget -qO- get.chezmoi.io)" -- init --apply tbjers
Or with PowerShell:
(irm -useb https://get.chezmoi.io/ps1) | powershell -c - init --apply tbjers