/ layouts / default.kdl
default.kdl
 1  layout {
 2      default_tab_template {
 3          children
 4          pane size=1 borderless=true {
 5              plugin location="file:~/.config/zellij/plugins/zjstatus.wasm" {
 6                  format_left   "{tabs}"
 7                  format_center "{mode}"
 8                  format_right  "{datetime}"
 9                  format_space  ""
10  
11                  border_enabled  "false"
12                  border_char     "─"
13                  border_format   "#[fg=#4a3c2e]{char}"  // base03 - Comments color
14                  border_position "top"
15  
16                  hide_frame_for_single_pane "true"
17  
18                  // Mode indicators
19                  mode_normal  "#[fg=#4a3c2e] NORMAL "     // base03 - Comments color (neutral)
20                  mode_insert  "#[fg=#ff7300] INSERT "     // base09 - Orange
21                  mode_select  "#[fg=#e5524f] SELECT "     // base08 - Red
22                  mode_tmux    "#[fg=#7c89cd] TMUX "       // base0D - Blue
23  
24                  // Tab styling
25                  tab_normal   "#[fg=#4a3c2e] {index} {name} ○ "       // base03 - Comments color (bone/grey)
26                  tab_active   "#[fg=#e6d7c3] {index} {name} ● "       // base05 - Beige/cream
27  
28                  // DateTime only
29                  datetime        "#[fg=#4a3c2e] {format} "              // base03 - Comments color
30                  datetime_format "%A, %d %b %Y | %H:%M"                 // "|" between date and time
31                  datetime_timezone "America/New_York"
32              }
33          }
34      }
35  }