summaryrefslogtreecommitdiff
path: root/after/ftplugin/tex.lua
blob: 963ab7f1206f94f18db99a020b99bb1bcf588887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
vim.cmd([[setlocal shiftwidth=2 tabstop=2]])

vim.fn.call("vimtex#imaps#add_map", {
  {
    lhs = "++",
    rhs = "\\item ",
    leader = "",
    wrapper = "vimtex#imaps#wrap_environment",
    context = { "itemize", "enumerate", "description" },
  },
})

vim.fn.call("vimtex#imaps#add_map", {
  {
    lhs = "e",
    rhs = "\\eps",
    wrapper = "vimtex#imaps#wrap_math",
  },
})