29 lines
659 B
KDL
29 lines
659 B
KDL
default_shell "fish"
|
|
default_layout "compact"
|
|
show_startup_tips false
|
|
|
|
theme "matugen"
|
|
|
|
keybinds {
|
|
normal {
|
|
bind "Alt h" { MoveFocus "Left"; }
|
|
bind "Alt l" { MoveFocus "Right"; }
|
|
bind "Alt j" { MoveFocus "Down"; }
|
|
bind "Alt k" { MoveFocus "Up"; }
|
|
}
|
|
|
|
move {
|
|
bind "h" { MovePane "Left"; }
|
|
bind "l" { MovePane "Right"; }
|
|
bind "j" { MovePane "Down"; }
|
|
bind "k" { MovePane "Up"; }
|
|
}
|
|
|
|
resize {
|
|
bind "h" { Resize "Increase Left"; }
|
|
bind "l" { Resize "Increase Right"; }
|
|
bind "j" { Resize "Increase Down"; }
|
|
bind "k" { Resize "Increase Up"; }
|
|
}
|
|
}
|