cleaning, initial DAP setup
Some checks failed
Build neovim image / build-neovim-arm64 (push) Failing after 7m0s
Build neovim image / update-images-manifest (push) Has been cancelled
Build neovim image / build-neovim-amd64 (push) Has been cancelled

This commit is contained in:
Maciej Lebiest 2024-04-03 19:27:42 +02:00
parent 5b6495828c
commit 1b4d92f8fe
5 changed files with 101 additions and 10 deletions

View file

@ -39,6 +39,11 @@ map("n", "<leader>gs", ":Telescope git_status<CR>")
map("n", "<leader>gc", ":Telescope git_commits<CR>")
map("n", "<leader>gb", ":Telescope git_branches<CR>")
-- dap
map("n", "<leader>db", ":lua require'dap'.toggle_breakpoint()<CR>")
map("n", "<leader>dc", ":lua require'dap'.continue()<CR>")
map("n", "<leader>dg", ":lua require'dapui'.toggle()<CR>")
-- tab lines in normal and visual mode
map("n", "<Tab>", ">>")
map("n", "<S-Tab>", "<<")