add dotfiles and nixos zellij layouts with stacked panes

This commit is contained in:
2026-03-12 10:56:34 +00:00
parent ea32a1ce37
commit cbe446e0a1
4 changed files with 57 additions and 3 deletions
+3 -3
View File
@@ -250,9 +250,9 @@ keybinds clear-defaults=true {
// changing these requires a restart to take effect
plugins {
about location="zellij:about"
compact-bar location="zellij:compact-bar" { // replace it with these lines
tooltip "F1" // choose a keybinding to toggle the hints
}
compact-bar location="zellij:compact-bar" {
tooltip "F1"
}
configuration location="zellij:configuration"
filepicker location="zellij:strider" {
cwd "/"
+28
View File
@@ -0,0 +1,28 @@
layout {
default_tab_template {
children
pane size=1 borderless=true {
plugin location="zellij:compact-bar"
}
}
tab name="dotfiles" cwd="/home/thomasgl/.dotfiles" {
pane split_direction="vertical" {
pane stacked=true {
pane
pane command="nvim"
}
pane size="30%" command="pi"
}
}
tab name="NixOS" cwd="/home/thomasgl/etc/nixos" {
pane split_direction="vertical" {
pane stacked=true {
pane
pane command="nvim"
}
pane size="30%" command="pi"
}
}
}
+13
View File
@@ -0,0 +1,13 @@
layout {
cwd "/home/thomasgl/.dotfiles"
pane split_direction="vertical" {
pane stacked=true {
pane
pane command="nvim"
}
pane size="30%" command="pi"
}
pane size=1 borderless=true {
plugin location="zellij:compact-bar"
}
}
+13
View File
@@ -0,0 +1,13 @@
layout {
cwd "/home/thomasgl/etc/nixos"
pane split_direction="vertical" {
pane stacked=true {
pane
pane command="nvim"
}
pane size="30%" command="pi"
}
pane size=1 borderless=true {
plugin location="zellij:compact-bar"
}
}