diff options
| author | Robert Günzler <r@gnzler.io> | 2023-01-19 18:33:43 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2023-01-19 18:33:43 +0100 |
| commit | fc67eecc8a40bf28d3d2b190702e58c580bfba9f (patch) | |
| tree | 0b8d0455046ae484e036d2f9dfa69306bbea811d /.vim/snippets/gitcommit.lua | |
| parent | c03b74ce367d6e9e2988dbb4a18985bc372dd8a6 (diff) | |
vim: format config with stylua
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '.vim/snippets/gitcommit.lua')
| -rw-r--r-- | .vim/snippets/gitcommit.lua | 7 |
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) })), } |