nixpkgs/home/programs/neovim/configuration/snippets/html.snippets
Daniel Siepmann 9e5a77f592
Migrate Neovim snippets to inline configuration
Same as with configuration.
No need for extra repository.
2022-03-15 08:16:18 +01:00

18 lines
393 B
Plaintext

snippet file Insert full html base document #2
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>${1}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
${2}
</body>
</html>
snippet script
<script type="text/javascript">
${0}
</script>