mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
add nvim/snippets/html.lua
This commit is contained in:
parent
ce00d0e5c9
commit
f153382cb4
1 changed files with 15 additions and 0 deletions
15
nvim/snippets/html.lua
Normal file
15
nvim/snippets/html.lua
Normal 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>',
|
||||
}))
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue