Even more neovim changes
diff --git a/modules/neovim/coc/snippets/markdown.snippets b/modules/neovim/coc/snippets/markdown.snippets
index b6e7af8..d637b88 100644
--- a/modules/neovim/coc/snippets/markdown.snippets
+++ b/modules/neovim/coc/snippets/markdown.snippets
@@ -73,6 +73,10 @@
 <!-- spell-checker:enable -->
 endsnippet
 
+snippet spellwords "Add extra words for spellchecking"
+<!-- spell-checker:words ${1} -->${0}
+endsnippet
+
 snippet normaldistribution "A normal distribution" i
 X\sim N(${1:mean}, ${2:variance})${0}
 endsnippet
@@ -84,3 +88,15 @@
 snippet sum "A sum" i
 \sum^{${1:n}}_{${2:r}=${3:1}}${4}${0}
 endsnippet
+
+snippet qed "quod erat demonstrandum - the thing we wanted to prove has been" w
+Q.E.D.
+endsnippet
+
+snippet forallinzplus "For all in the positive integers" i
+\forall ${1:n} \in \\${2:Z}^${3:+}${0}
+endsnippet
+
+snippet piby "By by something" i
+\frac{${1}\pi}{${2}}${0}
+endsnippet