summaryrefslogtreecommitdiffstats
path: root/.vim/UltiSnips/tex.snippets
blob: 1c29c168bf5d36912c76c2e02f6d581fc0300ccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
snippet minted "Simple minted snippet" b
\begin{minted}{${1:text}}
$0
\end{minted}
endsnippet

snippet frame "frame environment" b
\begin{frame}{${2:title}}
	${0:${VISUAL}}
\end{frame}
endsnippet