diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-09-22 12:58:16 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-09-22 12:58:16 +0200 |
commit | 9293bd808111f576f981d0d93ca8d715d22cd7e5 (patch) | |
tree | 518d9867579cc01929198f4fce4f015ac6c9e128 /.config/coc/ultisnips/html.snippets | |
parent | 8da5ed235bf0177df156eca42239257586026d02 (diff) |
large laptop dotfiles update
Diffstat (limited to '.config/coc/ultisnips/html.snippets')
-rw-r--r-- | .config/coc/ultisnips/html.snippets | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/.config/coc/ultisnips/html.snippets b/.config/coc/ultisnips/html.snippets deleted file mode 100644 index 1730a7a..0000000 --- a/.config/coc/ultisnips/html.snippets +++ /dev/null @@ -1,16 +0,0 @@ -snippet newhtml "HTML Starting Point" -<!DOCTYPE html> -<html> -<head> - <meta charset='utf-8'> - <meta http-equiv='X-UA-Compatible' content='IE=edge'> - <title>${1:Page Title}</title> - <meta name='viewport' content='width=device-width, initial-scale=1'> - <link rel='stylesheet' type='text/css' media='screen' href='${2:style.css}'> - <script src='${3:script.js}'></script> -</head> -<body> - ${0} -</body> -</html> -endsnippet |