vim: Add *section snippets for tex
This commit is contained in:
parent
a5ce7440b5
commit
d019292971
19
home/.config/nvim/UltiSnips/tex.snippets
Normal file
19
home/.config/nvim/UltiSnips/tex.snippets
Normal 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
|
Reference in a new issue