summaryrefslogtreecommitdiffstats
path: root/lua/Snippets/tex/greek.lua
diff options
context:
space:
mode:
authorNanderty <psopka@sopka.ch>2023-03-29 21:11:32 +0200
committerNanderty <psopka@sopka.ch>2023-03-29 21:11:32 +0200
commitc456976987b05a5add43d6fe8379dcec4cbde2de (patch)
treed5c3cf4d9cfa549c8c3fb8b3e0d6132e05faa433 /lua/Snippets/tex/greek.lua
parent4cf61987eebf88f3878e1b979d83d14de730a8db (diff)
downloadneovim-config-c456976987b05a5add43d6fe8379dcec4cbde2de.tar.gz
neovim-config-c456976987b05a5add43d6fe8379dcec4cbde2de.tar.bz2
neovim-config-c456976987b05a5add43d6fe8379dcec4cbde2de.zip
Snippet, fixes, additions
Diffstat (limited to 'lua/Snippets/tex/greek.lua')
-rw-r--r--lua/Snippets/tex/greek.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/Snippets/tex/greek.lua b/lua/Snippets/tex/greek.lua
deleted file mode 100644
index f47cdac..0000000
--- a/lua/Snippets/tex/greek.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-local tex = require('Snippets.luasniphelperslatex')
-local helper = require('Snippets.luasniphelpers')
-
-return {
- s({ trig = "pi", snippetType = "autosnippet" },
- {
- t("\\pi"),
- },
- { condition = tex.in_mathzone }
- ),
- s({ trig = "0eps", snippetType = "autosnippet" },
- {
- t("\\epsilon_0"),
- },
- { condition = tex.in_mathzone }
- ),
-}