mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2024-12-29 04:33:43 +00:00
40 lines
1,004 B
Text
40 lines
1,004 B
Text
layout {
|
|
default_tab_template {
|
|
children
|
|
pane size=1 borderless=true {
|
|
plugin location="zellij:compact-bar"
|
|
}
|
|
}
|
|
|
|
cwd "/home/mo/code/hosted/oxiform"
|
|
|
|
tab name="hx" split_direction="vertical" focus=true {
|
|
pane {
|
|
focus true
|
|
command "fish"
|
|
args "-C" "hx src/main.rs"
|
|
close_on_exit true
|
|
}
|
|
pane {
|
|
command "bacon"
|
|
}
|
|
}
|
|
tab name="git" split_direction="vertical" {
|
|
pane {
|
|
command "fish"
|
|
args "-C" "gitui"
|
|
close_on_exit true
|
|
}
|
|
}
|
|
tab name="bg" split_direction="vertical"{
|
|
pane {
|
|
command "podman"
|
|
args "run" "-it" "--rm" "-p" "5432:5432" "-v" "/home/mo/.tmp/oxiform_db:/var/lib/postgresql/data:Z" "--env-file" ".env" "docker.io/library/postgres:15-alpine"
|
|
}
|
|
pane {
|
|
command "npx"
|
|
args "tailwindcss" "-mw" "-i" "input.css" "-o" "static/main.css"
|
|
}
|
|
}
|
|
}
|
|
|