vim: Add *section snippets for tex

This commit is contained in:
Simon Bruder 2020-05-26 20:13:44 +02:00
parent a5ce7440b5
commit d019292971
No known key found for this signature in database
GPG key ID: 6F03E0000CC5B62F

View file

@ -0,0 +1,19 @@
extends tex
snippet s "Section" b
\section{$1}
endsnippet
snippet ss "Subsection" b
\subsection{$1}
endsnippet
snippet sss "Subsubsection" b
\subsubsection{$1}
endsnippet