From 9f6cac24f95731c332302115881104f0ccdc3879 Mon Sep 17 00:00:00 2001 From: holly sparkles Date: Mon, 22 Apr 2024 21:06:57 +0200 Subject: [PATCH] add zellij config for desktop dev --- .config/zellij/desktop-develop.kdl | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .config/zellij/desktop-develop.kdl diff --git a/.config/zellij/desktop-develop.kdl b/.config/zellij/desktop-develop.kdl new file mode 100644 index 0000000..0603b2d --- /dev/null +++ b/.config/zellij/desktop-develop.kdl @@ -0,0 +1,32 @@ +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 name="README" cwd="./" { + pane name="helix" command="hx" { + args "./README.md" + } + } + tab name="Code" focus=true cwd="./" { + pane name="helix" command="hx" { + args "./" + } + } + tab name="Cargo" cwd="./target" { + pane split_direction="horizontal" { + pane name="cargo" command="cargo" { + args "watch" "-q" "-c" "-w" "src/" "-x" "run" + } + pane name="shell" size="20%" {} + } + } + tab name="Git" cwd="./" { + pane borderless=true command="lazygit" {} + } +} -- libgit2 1.7.2