1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

add nvim/snippets/html.lua

This commit is contained in:
Henrik Hautakoski 2025-12-09 02:04:10 +01:00
parent ce00d0e5c9
commit f153382cb4

15
nvim/snippets/html.lua Normal file
View file

@ -0,0 +1,15 @@
return {
s("boilerplate", t({
'<html lang="en">',
'<head>',
' <meta charset="UTF-8">',
' <meta http-equiv="X-UA-Compatible" content="ie=edge">',
' <title>Title</title>',
' <link rel="stylesheet" href="style.css">',
'</head>',
'<body>',
' <script src="index.js"></script>',
'</body>',
'</html>',
}))
}