Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 933 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 933 Bytes

dotfiles

security pre-commit Conventional Commits

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