dotfiles/nvim/.config/nvim/vsnips/tex.json

41 lines
907 B
JSON
Raw Normal View History

2021-08-28 20:41:07 +00:00
{
"tabular": {
"prefix": "tabular",
"body": [
"\\\\begin{tabular}{$1}",
2021-09-22 03:35:48 +00:00
"\t\\\\hline",
2021-08-28 20:41:07 +00:00
"\t$0",
2021-09-22 03:35:48 +00:00
"\t\\\\hline",
2021-08-28 20:41:07 +00:00
"\\\\end{tabular}"
],
"description": "tabular"
},
"center": {
"prefix": "center",
"body": [
"\\\\begin{center}",
"\t$0",
"\\\\end{center}"
],
"description": "center"
},
"minipage": {
"prefix": "minipage",
"body": [
"\\\\begin{minipage}{${1:0.5}${2:\\\\linewidth}}",
"\t$0",
"\\\\end{minipage}"
],
"description": "minipage"
2021-09-22 06:46:32 +00:00
},
"multicols": {
"prefix": "multicols",
"body": [
"\\\\begin{multicols}{${1:2}}",
"\t$0",
"\\\\end{multicols}"
],
"description": "multicols"
2021-08-28 20:41:07 +00:00
}
}