diff options
| author | ottjk <joshott16@gmail.com> | 2024-01-20 01:29:51 -0500 |
|---|---|---|
| committer | ottjk <joshott16@gmail.com> | 2024-01-20 01:29:51 -0500 |
| commit | ea9a749bd6238334ff9e92a0a31fdeaf5223619b (patch) | |
| tree | 6036539f3e49427483fb2dc388da377d5e5c7397 /nvim/snips/tex/symbols.lua | |
| parent | 9b78e39e9cca329acc160399e46bb8d1c9b33955 (diff) | |
| download | dotfiles-ea9a749bd6238334ff9e92a0a31fdeaf5223619b.tar.gz dotfiles-ea9a749bd6238334ff9e92a0a31fdeaf5223619b.zip | |
many such updates
Diffstat (limited to 'nvim/snips/tex/symbols.lua')
| -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 d42c831..59b505b 100644 --- a/nvim/snips/tex/symbols.lua +++ b/nvim/snips/tex/symbols.lua @@ -246,6 +246,10 @@ return { { n.t("\\rho") }, { condition = h.in_mathzone } ), + n.s({trig="'ch", snippetType="autosnippet"}, + { n.t("\\chi") }, + { condition = h.in_mathzone } + ), n.s({trig="del", snippetType="autosnippet"}, { n.t("\\Del") }, { condition = h.in_mathzone } @@ -330,6 +334,10 @@ return { { n.t("^{\\circ}") }, { condition = h.in_mathzone } ), + n.s({trig="'da", snippetType="autosnippet", wordTrig=false}, + { n.t("^{\\dag}") }, + { condition = h.in_mathzone } + ), n.s({trig="oxx", snippetType="autosnippet"}, { n.t("\\otimes") }, { condition = h.in_mathzone } |