Skip to content

Instantly share code, notes, and snippets.

@WeZZard
Created August 10, 2025 21:00
Show Gist options
  • Save WeZZard/3e848e5398adbb007c9e27936440a61f to your computer and use it in GitHub Desktop.
Save WeZZard/3e848e5398adbb007c9e27936440a61f to your computer and use it in GitHub Desktop.
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