summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2023-03-07 09:23:57 +0100
committerAram Drevekenin <aram@poor.dev>2023-03-07 09:23:57 +0100
commit01777ebaadd517c2c740d78598308f2c0bf61089 (patch)
treebab350f1ba95bfb18f1dec406e927d1f311a8a33
parent112782e1edb720f40d43fde15dac4dffb53e8e6f (diff)
chore(release): v0.35.0v0.35.0
-rw-r--r--example/default.kdl11
1 files changed, 11 insertions, 0 deletions
diff --git a/example/default.kdl b/example/default.kdl
index 248b4026c..1e8ddd7c3 100644
--- a/example/default.kdl
+++ b/example/default.kdl
@@ -40,6 +40,7 @@ keybinds {
move {
bind "Ctrl h" { SwitchToMode "Normal"; }
bind "n" "Tab" { MovePane; }
+ bind "p" { MovePaneBackwards; }
bind "h" "Left" { MovePane "Left"; }
bind "j" "Down" { MovePane "Down"; }
bind "k" "Up" { MovePane "Up"; }
@@ -130,6 +131,7 @@ keybinds {
bind "k" { MoveFocus "Up"; SwitchToMode "Normal"; }
bind "o" { FocusNextPane; }
bind "d" { Detach; }
+ bind "Space" { NextSwapLayout; }
bind "x" { CloseFocus; SwitchToMode "Normal"; }
}
shared_except "locked" {
@@ -142,6 +144,8 @@ keybinds {
bind "Alt k" "Alt Up" { MoveFocus "Up"; }
bind "Alt =" "Alt +" { Resize "Increase"; }
bind "Alt -" { Resize "Decrease"; }
+ bind "Alt [" { PreviousSwapLayout; }
+ bind "Alt ]" { NextSwapLayout; }
}
shared_except "normal" "locked" {
bind "Enter" "Esc" { SwitchToMode "Normal"; }
@@ -203,6 +207,13 @@ plugins {
//
// pane_frames true
+// Toggle between having Zellij lay out panes according to a predefined set of layouts whenever possible
+// Options:
+// - true (default)
+// - false
+//
+// auto_layout true
+
// Define color themes for Zellij
// For more examples, see: https://github.com/zellij-org/zellij/tree/main/example/themes
// Once these themes are defined, one of them should to be selected in the "theme" section of this file