summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.vim/snippets/gitcommit.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/.vim/snippets/gitcommit.lua b/.vim/snippets/gitcommit.lua
index fd96216..c6153a3 100644
--- a/.vim/snippets/gitcommit.lua
+++ b/.vim/snippets/gitcommit.lua
@@ -1,4 +1,5 @@
 return {
   s('sign'  , fmt([[Signed-off-by: {}]], {sn(1, user_email)})),
-  s('change', fmt([[Change-type: {}]], {c(1, {t('patch'), t('minor'), t('major')}) })),
+  s('change', fmt([[Change-type: {}]], {c(1, {t('patch'), t('minor'), t('major')})})),
+  s('coauth', fmt([[Co-authored-by: {}]], {i(1)})),
 }