initial commit
This commit is contained in:
29
mappings.lua
Normal file
29
mappings.lua
Normal 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
|
||||
Reference in New Issue
Block a user