diff options
| author | ottjk <joshott16@gmail.com> | 2024-09-01 23:01:08 -0400 |
|---|---|---|
| committer | ottjk <joshott16@gmail.com> | 2024-09-01 23:01:08 -0400 |
| commit | 0bd9cb1ad4eea1dcb204d5f90b58978a60e655cd (patch) | |
| tree | c5b103586c1ce3e3a30228fe8291d98d9f12d2fd /nvim/snips | |
| parent | 6c9b28b9594b7322a5c53d72fe9a21c7ad7b7d39 (diff) | |
| download | dotfiles-0bd9cb1ad4eea1dcb204d5f90b58978a60e655cd.tar.gz dotfiles-0bd9cb1ad4eea1dcb204d5f90b58978a60e655cd.zip | |
lectern config
Diffstat (limited to 'nvim/snips')
| -rw-r--r-- | nvim/snips/tex/symbols.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nvim/snips/tex/symbols.lua b/nvim/snips/tex/symbols.lua index 04d7e78..cbd7680 100644 --- a/nvim/snips/tex/symbols.lua +++ b/nvim/snips/tex/symbols.lua @@ -109,6 +109,14 @@ return { { n.t("\\leftrightarrow") }, { condition = h.in_mathzone } ), + n.s({trig="^^", snippetType="autosnippet"}, + { n.t("\\uparrow") }, + { condition = h.in_mathzone } + ), + n.s({trig="vv", snippetType="autosnippet"}, + { n.t("\\downarrow") }, + { condition = h.in_mathzone } + ), n.s({trig="!>", snippetType="autosnippet"}, { n.t("\\mapsto") }, { condition = h.in_mathzone } |