Update .local/share/chezmoi/home/private_dot_config/git/template/symlink_commit-msg, .local/share/chezmoi/home/private_dot_config/git/template/symlink_post-checkout, .local/share/chezmoi/home/private_dot_config/git/template/symlink_post-merge, .local/share/chezmoi/home/private_dot_config/git/template/symlink_post-commit, .local/share/chezmoi/home/private_dot_config/git/template/symlink_post-rewrite, .local/share/chezmoi/home/private_dot_config/git/template/symlink_pre-commit, .local/share/chezmoi/home/private_dot_config/git/template/symlink_pre-push, .local/share/chezmoi/home/private_dot_config/git/template/symlink_prepare-commit-msg, .local/share/chezmoi/home/.chezmoiexternal.toml

This commit is contained in:
Brian Zalewski 2022-12-06 17:33:14 +00:00
parent cebfaf278c
commit e7b6f57f45
9 changed files with 30 additions and 0 deletions

View file

@ -89,6 +89,12 @@
clone.args = ["--depth", "1"] clone.args = ["--depth", "1"]
pull.args = ["--ff-only"] pull.args = ["--ff-only"]
### Git Template
[".config/git/template/_/husky.sh"]
type = "file"
url = "https://github.com/typicode/husky/raw/main/husky.sh"
refreshPeriod = "{{ $refreshPeriod }}"
### GPG ### GPG
[".gnupg/gpg.conf"] [".gnupg/gpg.conf"]
type = "file" type = "file"

View file

@ -0,0 +1,3 @@
{{- if true -}}
{{ .host.home }}/.local/src/shared-common/common/.config/husky/commit-msg
{{- end -}}

View file

@ -0,0 +1,3 @@
{{- if true -}}
{{ .host.home }}/.local/src/shared-common/common/.config/husky/post-checkout
{{- end -}}

View file

@ -0,0 +1,3 @@
{{- if true -}}
{{ .host.home }}/.local/src/shared-common/common/.config/husky/post-commit
{{- end -}}

View file

@ -0,0 +1,3 @@
{{- if true -}}
{{ .host.home }}/.local/src/shared-common/common/.config/husky/post-merge
{{- end -}}

View file

@ -0,0 +1,3 @@
{{- if true -}}
{{ .host.home }}/.local/src/shared-common/common/.config/husky/post-rewrite
{{- end -}}

View file

@ -0,0 +1,3 @@
{{- if true -}}
{{ .host.home }}/.local/src/shared-common/common/.config/husky/pre-commit
{{- end -}}

View file

@ -0,0 +1,3 @@
{{- if true -}}
{{ .host.home }}/.local/src/shared-common/common/.config/husky/pre-push
{{- end -}}

View file

@ -0,0 +1,3 @@
{{- if true -}}
{{ .host.home }}/.local/src/shared-common/common/.config/husky/prepare-commit-msg
{{- end -}}