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

@ -137,10 +137,15 @@ bind=SUPER,D,exec,$HOME/.config/eww/scripts/cockpit_toggle
bind=SUPER,A,exec,copyq toggle
binde=SUPER,bracketleft,movefocus,l
binde=SUPER,bracketright,movefocus,r
binde=SUPER,semicolon,movefocus,u
binde=SUPER,apostrophe,movefocus,d
binde=SUPER,J,movefocus,l
binde=SUPER,semicolon,movefocus,r
binde=SUPER,L,movefocus,u
binde=SUPER,K,movefocus,d
binde=SUPER,U,resizeactive,-20 0
binde=SUPER,P,resizeactive,20 0
binde=SUPER,I,resizeactive,0 -20
binde=SUPER,O,resizeactive,0 20
bind=SUPER,left,movewindow,l
bind=SUPER,right,movewindow,r
@ -183,11 +188,6 @@ bind=SUPERSHIFTALT,0,movetoworkspacesilent,10
bindm=SUPER,mouse:272,movewindow
bindm=SUPER,mouse:273,resizewindow
binde=SUPER,O,resizeactive,-20 0
binde=SUPER,P,resizeactive,20 0
binde=SUPER,K,resizeactive,0 -20
binde=SUPER,L,resizeactive,0 20
#binds for debug testing
bind=SUPERALT,H,pass,^(wlroots)$

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)