this repo has no description
at main 24 lines 573 B view raw view rendered
1# dotfiles 2 3My dotfiles, managed with [chezmoi](https://www.chezmoi.io/). 4 5## Notes 6 7### Dump homebrew 8 9```sh 10brew-bundle-dump 11``` 12 13### Git secret scanning 14 15This repo configures a global `pre-commit` hook (via `core.hooksPath`) that 16uses `gitleaks` to block secrets from being committed. 17 18### Repo-local commit-msg hook 19 20This repo has a Conventional Commits check in `.githooks/commit-msg`. 21 22No repo-local `core.hooksPath` override is needed. Global hooks live in 23`~/.config/git/hooks`, and the global `commit-msg` hook dispatches to 24`./.githooks/commit-msg` when present.