summary refs log tree commit diff
path: root/.vim/snippets
diff options
context:
space:
mode:
Diffstat (limited to '.vim/snippets')
-rw-r--r--.vim/snippets/html.lua16
1 files changed, 7 insertions, 9 deletions
diff --git a/.vim/snippets/html.lua b/.vim/snippets/html.lua
index 07c2c09..af7be73 100644
--- a/.vim/snippets/html.lua
+++ b/.vim/snippets/html.lua
@@ -8,18 +8,16 @@ return {
 <html lang="en">
 
 <head>
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <meta name="color-scheme" content="dark light">
-
-    <link href="{style}" rel="stylesheet" />
-    <script src="{script}"></script>
-
-    <title>{title}</title>
+  <meta charset="utf-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <meta name="color-scheme" content="dark light">
+  <title>{title}</title>
+  <link href="{style}" rel="stylesheet">
+  <script src="{script}"></script>
 </head>
 
 <body>
-    {body}
+  {body}
 </body>
 
 </html>