aboutsummaryrefslogtreecommitdiff
path: root/.config/coc/ultisnips
diff options
context:
space:
mode:
Diffstat (limited to '.config/coc/ultisnips')
-rw-r--r--.config/coc/ultisnips/css.snippets5
-rw-r--r--.config/coc/ultisnips/html.snippets16
-rw-r--r--.config/coc/ultisnips/tex.snippets19
3 files changed, 0 insertions, 40 deletions
diff --git a/.config/coc/ultisnips/css.snippets b/.config/coc/ultisnips/css.snippets
deleted file mode 100644
index fc67c2e..0000000
--- a/.config/coc/ultisnips/css.snippets
+++ /dev/null
@@ -1,5 +0,0 @@
-snippet resetFontWeight "reset font-weight for mobile browsers"
-h1, h2, h3, h4, h5, h6 {
- font-weight: normal !important;
-}
-endsnippet
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
diff --git a/.config/coc/ultisnips/tex.snippets b/.config/coc/ultisnips/tex.snippets
deleted file mode 100644
index c1943a1..0000000
--- a/.config/coc/ultisnips/tex.snippets
+++ /dev/null
@@ -1,19 +0,0 @@
-snippet newdocument "Starting point for a new LaTeX document"
-\\documentclass[12pt, a4paper]{article}
-\\usepackage[margin=1in]{geometry}
-
-\\bigskipamount=7mm
-\\medskipamount=4mm
-\\parindent=0mm
-
-\\begin{document}
-${0}
-\\end{document}
-endsnippet
-
-snippet beg "begin{} / end{}" bA
-\\begin{$1}
- $0
-\\end{$1}
-endsnippet
-