From 63feeb9f369fc6176e85c1c2d8fcc863caad1946 Mon Sep 17 00:00:00 2001 From: Robert Günzler Date: Tue, 10 Feb 2026 12:32:48 +0100 Subject: start new MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robert Günzler --- .vim/snippets/html.lua | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .vim/snippets/html.lua (limited to '.vim/snippets/html.lua') diff --git a/.vim/snippets/html.lua b/.vim/snippets/html.lua deleted file mode 100644 index af7be73..0000000 --- a/.vim/snippets/html.lua +++ /dev/null @@ -1,49 +0,0 @@ ----@diagnostic disable: undefined-global -return { - s( - 'html:5', - fmt( - [[ - - - - - - - - {title} - - - - - - {body} - - - - ]], - { - title = i(1, 'my title'), - style = i(2, 'style.css'), - script = i(3, 'main.js'), - body = i(0), - } - ) - ), - s('anchor', fmt([[{}]], { i(1), i(2) })), - s( - 'journal', - fmt( - [[ -
-

{}

-

{}

-
- ]], - { - i(1, os.date('%Y-%m-%d, %a')), - i(0), - } - ) - ), -} -- cgit 1.4.1