馃 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 20 lines 512 B view raw
1{ 2 "html5": { 3 "prefix": "init", 4 "description": "HTML - Defines a template for a html5 document", 5 "body": [ 6 "<!DOCTYPE html>", 7 "<html lang=\"$1en\">", 8 " <head>", 9 " <meta charset=\"UTF-8\">", 10 " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">", 11 " <title>$2</title>", 12 " <link href=\"$3css/style.css\" rel=\"stylesheet\">", 13 " </head>", 14 " <body>", 15 " $0", 16 " </body>", 17 "</html>" 18 ] 19 } 20}