From 81c6ec52704b035c51e9a8226ed85ebd28646084 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Sat, 7 Sep 2024 23:28:21 +0200 Subject: [PATCH] disable pane frames for zellij --- home/common/shell/zellij.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/common/shell/zellij.nix b/home/common/shell/zellij.nix index dbb7d52..a837f72 100644 --- a/home/common/shell/zellij.nix +++ b/home/common/shell/zellij.nix @@ -3,5 +3,8 @@ { programs.zellij = { enable = true; + settings = { + pane_frames = false; + }; }; }