Compare commits

...

2 Commits

Author SHA1 Message Date
Noah Masur
3852551ebe
fix: not locking zellij when switching sessions 2025-03-30 12:55:39 -04:00
Noah Masur
9727fd6a56
add lazygit to cli 2025-03-30 12:55:12 -04:00
2 changed files with 14 additions and 1 deletions

View File

@ -65,6 +65,7 @@ in
# exitShellOnExit = true;
settings = {
default_mode = "locked";
# default_layout = "compact-top";
# Remove border
pane_frames = false;
@ -98,6 +99,18 @@ in
keybinds = {
normal = {
};
session = {
"bind \"w\"" = {
LaunchOrFocusPlugin = {
_args = [ "session-manager" ];
floating = true;
move_to_focused_tab = true;
};
SwitchToMode = {
_args = [ "locked" ];
};
};
};
shared = {
"bind \"Alt Shift p\"" = {
"Run" = {

View File

@ -37,7 +37,7 @@ in
programs.gh-dash.enable = lib.mkDefault true;
programs.himalaya.enable = lib.mkDefault true;
programs.lazygit.enable = lib.mkDefault true;
};
}