nvim-config/lua/custom/mappings.lua

9 lines
243 B
Lua

local M = {}
M.vimtex = {
n = {
["<leader>cc"] = { "<cmd>VimtexCompile<CR>", "Compile LaTeX" },
["<leader>cv"] = { "<cmd>VimtexView<CR>", "View PDF" },
["<leader>cq"] = { "<cmd>VimtexStop<CR>", "Stop Compiler" },
},
}
return M