Merge branch 'dev' into gentoo

nvim: add tex snippets
This commit is contained in:
David JULIEN 2021-12-04 17:13:46 +01:00
commit bd972a5c71
No known key found for this signature in database
GPG Key ID: 4B388E8BD9D47382
1 changed files with 13 additions and 0 deletions

View File

@ -435,6 +435,13 @@ ls.snippets = {
d(2, rec_ls, {}),
t({ "", "\\end{itemize}", "" }),
}),
s("lsra", {
t({ "\\begin{itemize}[label=$\\rightarrow$]", "\t\\item " }),
i(1),
t({ "" }),
d(2, rec_ls, {}),
t({ "", "\\end{itemize}", "" }),
}),
s("frm", {
t({ "\\begin{" }),
i(1),
@ -459,6 +466,12 @@ ls.snippets = {
f(copy,1),
t({ "}", "" }),
}),
s("tikz", {
t({ "\begin{center}" }),
t({ "\t\\begin{tikzpicture}[main/.style = {draw,circle}]", "\tt" }),
i(1),
t({ "\t\\end{tikzpicture}", "\\end{center}" }),
}),
},
}