1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00

Integrate the session manager in Zellij

This commit is contained in:
Mo 2023-08-28 21:12:13 +02:00
parent aa371f7856
commit 5d04442236

View file

@ -15,6 +15,7 @@ keybinds clear-defaults=true {
bind "Alt r" { SwitchToMode "resize"; }
bind "Alt s" { SwitchToMode "scroll"; }
bind "Alt m" { SwitchToMode "move"; }
bind "Alt d" { SwitchToMode "session"; }
bind "Alt n" { NewPane; }
bind "Alt k" { FocusNextPane; }
bind "Alt j" { FocusPreviousPane; }
@ -66,4 +67,14 @@ keybinds clear-defaults=true {
bind "l" { PageScrollDown; }
bind "h" { PageScrollUp; }
}
session {
bind "d" { Detach; }
bind "m" {
LaunchOrFocusPlugin "zellij:session-manager" {
floating true
move_to_focused_tab true
};
SwitchToMode "Normal";
}
}
}