diff options
| author | Josh <joshott16@gmail.com> | 2025-04-12 20:28:32 -0400 |
|---|---|---|
| committer | Josh <joshott16@gmail.com> | 2025-04-12 20:28:32 -0400 |
| commit | d5bdc72c83453b5c7b0d0d75028d84c6fc8a396d (patch) | |
| tree | 0208f181d676deaf2406d4a313bbecfd3ac6acc2 /nvim/snips | |
| parent | 1bad4e90e0ec13e0d908b00498521ddf3954077b (diff) | |
| download | dotfiles-d5bdc72c83453b5c7b0d0d75028d84c6fc8a396d.tar.gz dotfiles-d5bdc72c83453b5c7b0d0d75028d84c6fc8a396d.zip | |
added cong
Diffstat (limited to 'nvim/snips')
| -rw-r--r-- | nvim/snips/tex/symbols.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nvim/snips/tex/symbols.lua b/nvim/snips/tex/symbols.lua index 6794d80..ef64e96 100644 --- a/nvim/snips/tex/symbols.lua +++ b/nvim/snips/tex/symbols.lua @@ -330,6 +330,10 @@ return { { n.t("\\approx") }, { condition = h.in_mathzone } ), + n.s({trig="=~", snippetType="autosnippet"}, + { n.t("\\cong") }, + { condition = h.in_mathzone } + ), n.s({trig="'de", snippetType="autosnippet"}, { n.t("\\delta") }, { condition = h.in_mathzone } |