From f756f082fd2ae06fb93131ded29efe6617d1ae3c Mon Sep 17 00:00:00 2001 From: Julius Riegel Date: Thu, 14 Mar 2024 17:02:04 +0100 Subject: [PATCH] Add names to panes --- content/config/zellij/development.kdl.tmpl | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/content/config/zellij/development.kdl.tmpl b/content/config/zellij/development.kdl.tmpl index d54e27a..95bf34d 100644 --- a/content/config/zellij/development.kdl.tmpl +++ b/content/config/zellij/development.kdl.tmpl @@ -48,14 +48,21 @@ layout { } tab name="Editor" split_direction="Vertical" hide_floating_panes=true { pane split_direction="Vertical" { - pane command="nu" size="15%" { + pane { + name "Files" + size "15%" + command "nu" args "-c" "broot --conf {{dirs.config}}/broot/ide.toml --sort-by-type-dirs-first" } - pane command="nu" size="55%" { + pane { + name "Editor" + command "nu" + size "55%" args "-c helix" } - pane size="30%" split_direction="Horizontal" { - pane size="100%" + pane { + name "Terminal" + size "30%" } } } @@ -63,6 +70,6 @@ layout { keybinds { normal { - bind "Ctrl f" {ToggleFocusFullscreen;} + bind "Ctrl f" { ToggleFocusFullscreen; } } }