summaryrefslogtreecommitdiffstats
path: root/Snippets/tex/environments.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Snippets/tex/environments.lua')
-rw-r--r--Snippets/tex/environments.lua48
1 files changed, 48 insertions, 0 deletions
diff --git a/Snippets/tex/environments.lua b/Snippets/tex/environments.lua
new file mode 100644
index 0000000..b9594aa
--- /dev/null
+++ b/Snippets/tex/environments.lua
@@ -0,0 +1,48 @@
+local line_begin = require("luasnip.extras.expand_conditions").line_begin
+
+return {
+ -- variable environment
+ s({ trig = 'beg', snippetType = 'autosnippet' },
+ fmta(
+ [[
+\begin{<>}
+ <>
+\end{<>}
+]],
+ {
+ i(1),
+ i(2),
+ rep(1),
+ }
+ ),
+ { condition = line_begin }
+ ),
+ -- enumerate environment
+ s({ trig = 'enu', snippetType = 'autosnippet' },
+ fmta(
+ [[
+\begin{enumerate*}
+ \item <>
+\end{enumerate*}
+]],
+ {
+ i(1),
+ }
+ ),
+ { condition = line_begin }
+ ),
+ -- align environment
+ s({ trig = 'ali', snippetType = 'autosnippet' },
+ fmta(
+ [[
+\begin{align*}
+ <>
+\end{align*}
+]],
+ {
+ i(1),
+ }
+ ),
+ { condition = line_begin }
+ ),
+}