initial commit

This commit is contained in:
DarianTr
2023-09-28 13:46:55 +02:00
commit bbb3a9dfd3
5 changed files with 156 additions and 0 deletions

29
mappings.lua Normal file
View File

@@ -0,0 +1,29 @@
local M = {}
M.dap = {
plugin = true,
n = {
["<leader>db"] = {
"<cmd> DapToggleBreakpoint <CR>",
"Add breakpoint at line",
},
["<leader>dr"] = {
"<cmd> DapContinue <CR>",
"Start or continue the debugger",
},
["<leader>pf"] = {
"<cmd>Telescope find_files<CR>",
"Open Telescope",
},
["<leader>lc"] = {
"<cmd> VimtexComile <CR>",
"Start latex compiler and preview",
},
["<leader>ls"] = {
"<cmd> VimtexStop <CR>",
"Stop latex compiler",
},
}
}
return M