feat: fix bat formatting for jj

feat: add signal update zellij
This commit is contained in:
Jet Pham 2025-08-18 19:10:10 -07:00
parent 51f990e3e4
commit 5076a3d4bb
No known key found for this signature in database
2 changed files with 55 additions and 6 deletions

View file

@ -73,6 +73,14 @@
direnv
mullvad-vpn
gnomeExtensions.hide-top-bar
signal-desktop
podman-tui
dive
passt
dbeaver-bin
insomnia
tree
logseq
];
programs.zellij = {
@ -83,11 +91,11 @@
# Default shell (using bash as configured in your system)
default_shell = "bash";
default_layout = "compact";
copy_on_select = false;
pane_frames = false;
# Mouse and interaction settings
# Mouse and interaction settings - enable for proper pane handling
mouse_mode = true;
copy_on_select = true;
show_startup_tips = false;
show_release_notes = false;
@ -176,8 +184,9 @@
push-new-bookmarks = true;
};
ui = {
default-command = "log";
editor = "hx";
pager = "bat";
pager = "bat --style=plain";
};
};
};
@ -202,4 +211,10 @@
"${pkgs.code-cursor}/share/applications/cursor.desktop"
];
};
}
# Enable rootless Podman with Home Manager
services.podman = {
enable = true;
autoUpdate.enable = true;
};
}