summaryrefslogtreecommitdiff
path: root/.chezmoi.toml.tmpl
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2025-09-08 15:52:48 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commit34a621ea75a7ec5d29804b307017882fabec4299 (patch)
treeeb15fbb84cf59da83687b1f9c1b3b3e250a38c1d /.chezmoi.toml.tmpl
parentf7e750f6c3b1c81fb93841a7fdbd209d00b7134a (diff)
feat(git) add .jj to user scoped gitignore
Diffstat (limited to '.chezmoi.toml.tmpl')
-rw-r--r--.chezmoi.toml.tmpl8
1 files changed, 2 insertions, 6 deletions
diff --git a/.chezmoi.toml.tmpl b/.chezmoi.toml.tmpl
index e25775c..1c7d8aa 100644
--- a/.chezmoi.toml.tmpl
+++ b/.chezmoi.toml.tmpl
@@ -14,7 +14,7 @@
{{ $git_email := promptStringOnce . "git_email" "Email address for Git global config" -}}
{{ $git_name := promptStringOnce . "git_name" "Display name for Git global config" -}}
-{{ $enable_nvim_copilot := promptBoolOnce . "enable_nvim_copilot" "Enable features related to GitHub Copilot" -}}
+{{ $work := promptBoolOnce . "work" "Identify if machine is for work" -}}
{{ if eq .chezmoi.os "windows" -}}
[cd]
@@ -27,14 +27,10 @@
[data]
git_email = {{ $git_email | quote }}
git_name = {{ $git_name | quote }}
- enable_nvim_copilot = {{ $enable_nvim_copilot }}
+ work = {{ $work }}
[diff]
exclude = ["scripts"]
[edit]
command = "nvim"
-
-[git]
- autoCommit = true
- commitMessageTemplate = "{{ promptString \"Commit message\" }}"