summary refs log tree commit diff
path: root/.vim/snippets/gitcommit.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/snippets/gitcommit.lua')
-rw-r--r--.vim/snippets/gitcommit.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/.vim/snippets/gitcommit.lua b/.vim/snippets/gitcommit.lua
index c6153a3..8e8e18f 100644
--- a/.vim/snippets/gitcommit.lua
+++ b/.vim/snippets/gitcommit.lua
@@ -1,5 +1,6 @@
+---@diagnostic disable: undefined-global
 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('coauth', fmt([[Co-authored-by: {}]], {i(1)})),
+  s('sign', fmt([[Signed-off-by: {}]], { sn(1, user_email) })),
+  s('change', fmt([[Change-type: {}]], { c(1, { t('patch'), t('minor'), t('major') }) })),
+  s('coauth', fmt([[Co-authored-by: {}]], { i(1) })),
 }