nvim: add glossary entry snippet

This commit is contained in:
Marco Thomas
2022-12-12 15:49:45 +01:00
parent 5645d1534f
commit bd8e59227d

View File

@@ -81,7 +81,7 @@
"", "",
"%%% set monospace font and decrease size, to match 80c in minted", "%%% set monospace font and decrease size, to match 80c in minted",
"\\usepackage{fontspec}", "\\usepackage{fontspec}",
"\\setmonofont[Scale=0.85]{SFMono Nerd Font},", "\\setmonofont[Scale=0.85]{SFMono Nerd Font}",
"", "",
"%%% set titlepage", "%%% set titlepage",
"\\title{ \\\\\\[0.2em] \\large }", "\\title{ \\\\\\[0.2em] \\large }",
@@ -93,7 +93,7 @@
"", "",
"\\begin{document}", "\\begin{document}",
"", "",
"% use with \\gls{nvim}", "% use with \\gls{nvim}, new entry with snippet nge",
"% \\newglossaryentry{nvim}{name=Neovim, description={Bester Editor der Welt}}", "% \\newglossaryentry{nvim}{name=Neovim, description={Bester Editor der Welt}}",
"", "",
"% create title page with toc", "% create title page with toc",
@@ -322,5 +322,10 @@
"\\end{frame}" "\\end{frame}"
], ],
"description": "Create frame env in a slide" "description": "Create frame env in a slide"
},
"glossary-entry": {
"prefix": "nge",
"body": ["\\newglossaryentry{$1}{name= ,description={}, plural={}}"],
"description": "Insert a new glossary entry"
} }
} }