From 3bb44a39ee79ddbbd7a3be6e4b01b4fe9511f6df Mon Sep 17 00:00:00 2001
From: khaneliman
Default:
false
Declared by:
+
+
+<home-manager/modules/programs/zellij.nix>
+
+ |
programs.zellij.layouts
+
+
+Configuration written to
+$XDG_CONFIG_HOME/zellij/layouts/<layout>.kdl.
See https://zellij.dev/documentation for the full +list of options.
+ +Type: +attribute set of (YAML 1.1 value or absolute path or strings concatenated with ā\nā)
+ +Default:
+{ }
Example:
{
+ dev = {
+ layout = {
+ _children = [
+ {
+ default_tab_template = {
+ _children = [
+ {
+ pane = {
+ size = 1;
+ borderless = true;
+ plugin = {
+ location = "zellij:tab-bar";
+ };
+ };
+ }
+ { "children" = { }; }
+ {
+ pane = {
+ size = 2;
+ borderless = true;
+ plugin = {
+ location = "zellij:status-bar";
+ };
+ };
+ }
+ ];
+ };
+ }
+ {
+ tab = {
+ _props = {
+ name = "Project";
+ focus = true;
+ };
+ _children = [
+ {
+ pane = {
+ command = "nvim";
+ };
+ }
+ ];
+ };
+ }
+ {
+ tab = {
+ _props = {
+ name = "Git";
+ };
+ _children = [
+ {
+ pane = {
+ command = "lazygit";
+ };
+ }
+ ];
+ };
+ }
+ {
+ tab = {
+ _props = {
+ name = "Files";
+ };
+ _children = [
+ {
+ pane = {
+ command = "yazi";
+ };
+ }
+ ];
+ };
+ }
+ {
+ tab = {
+ _props = {
+ name = "Shell";
+ };
+ _children = [
+ {
+ pane = {
+ command = "zsh";
+ };
+ }
+ ];
+ };
+ }
+ ];
+ };
+ };
+}
+
+
+
Declared by: