everyone will hate me for this

This commit is contained in:
Fabio Lenherr / DashieTM 2023-04-03 00:32:14 +02:00
parent 7ff61a42c6
commit 455199367f
2 changed files with 15 additions and 9 deletions

View file

@ -21,6 +21,12 @@ local term_opts = { silent = true }
-- map("n", "y", ':set relativenumber<CR>y', opts)
-- map("n", "<ESC>", ':set norelativenumber<CR><ESC>', opts)
-- crimes against humanity, but I don't care
map("n", "j", 'h', opts)
map("n", "k", 'j', opts)
map("n", "l", 'k', opts)
map("n", ";", 'l', opts)
-- debug
map("n", "<F5>", ':lua require("dap").toggle_breakpoint()<CR>', opts)
map("n", "<F6>", ':lua require("dap").step_over()<CR>', opts)