From fc67eecc8a40bf28d3d2b190702e58c580bfba9f Mon Sep 17 00:00:00 2001 From: Robert Günzler Date: Thu, 19 Jan 2023 18:33:43 +0100 Subject: vim: format config with stylua MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robert Günzler --- .vim/snippets/gitcommit.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '.vim/snippets/gitcommit.lua') 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) })), } -- cgit 1.4.1