summaryrefslogtreecommitdiff
path: root/lua/config/latex-which_key.lua
blob: 35534553860730dc46d559408c455961cabfd4b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Mappings

lvim.builtin.which_key.mappings["L"] = {
  name = "LaTeX",
  C = {
    name = "Compile",
    c = { "<cmd>TexlabBuild<CR>", "Compile Project and Show Output" },
    e = { "<cmd>Texplore<CR>", "Explore current directory" },
    C = { "<cmd>VimtexClean<CR>", "Clean Project with vimtex" },
    v = { "<cmd>VimtexCompile<CR>", "Compile Project with vimtex" },
    V = { "<cmd>VimtexView<CR>", "Show the output" },
  },
}