vim: Add · and // texmath snippets

This commit is contained in:
Simon Bruder 2020-07-11 09:50:36 +02:00
parent 4733695b53
commit 8aebf2d5de
No known key found for this signature in database
GPG key ID: 6F03E0000CC5B62F

View file

@ -13,3 +13,11 @@ endsnippet
snippet si "Insert SI unit (only works with simple numbers)" w
\SI{${1:amount}}{${2:unit}}
endsnippet
snippet · "Insert multiplication sign" A
\cdot $0
endsnippet
snippet // "Fraction" iA
\frac{$1}{$2}$0
endsnippet