1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00
dotfiles/nvim/snippets/html.lua

15 lines
407 B
Lua

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>',
}))
}