Created
August 10, 2025 21:00
-
-
Save WeZZard/3e848e5398adbb007c9e27936440a61f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
layout { | |
default_tab_template { | |
pane size=1 borderless=true { | |
plugin location="zellij:tab-bar" | |
} | |
children | |
pane size=2 borderless=true { | |
plugin location="zellij:status-bar" | |
} | |
} | |
tab_template name="project_tab" { | |
pane size=1 borderless=true { | |
plugin location="zellij:tab-bar" | |
} | |
pane split_direction="vertical" { | |
pane name="Agents" stacked=true { | |
// FIXME: pane name="Cursor" command="cursor-agent" | |
pane name="Claude" command="claude" | |
pane expanded=true name="Gemini" command="gemini" args="--checkpointing" | |
} | |
pane name="Files" stacked=true { | |
pane name="Shell" { | |
} | |
pane expanded=true name="Editor" { | |
command "vim" | |
args "-c" "NERDTree" | |
} | |
} | |
} | |
pane size=2 borderless=true { | |
plugin location="zellij:status-bar" | |
} | |
} | |
tab name="Home" cwd="$HOME" { | |
pane split_direction="horizontal" { | |
pane split_direction="vertical" { | |
pane name="Gemini" command="gemini" | |
pane name="Htop" command="htop" | |
} | |
pane size=30 name="Shell" { | |
} | |
} | |
} | |
project_tab name="ProjectName" cwd="$HOME/Projects/ProjectName" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment