3 Commits

Author SHA1 Message Date
Noah Masur
3b6b4bd2e6 update lazyjj to be a floating pane 2025-07-27 16:59:16 -04:00
Noah Masur
6f06b0a0c5 add lazyjj integration for zellij 2025-07-27 16:49:37 -04:00
Noah Masur
d3e69faf2f add quit shortcut for helix 2025-07-27 16:30:29 -04:00
2 changed files with 16 additions and 6 deletions

View File

@@ -147,6 +147,8 @@ in
"keep_primary_selection"
];
space.q = ":quit";
# Enable and disable inlay hints
space.H = ":toggle lsp.display-inlay-hints";
@@ -161,7 +163,7 @@ in
space.l = [
":write-all"
":new"
":insert-output ${lib.getExe pkgs.lazygit}"
":insert-output ${lib.getExe pkgs.lazygit} > /dev/tty"
":buffer-close!"
":redraw"
":reload-all"

View File

@@ -185,6 +185,19 @@ in
];
};
};
"bind \"Alt Shift j\"" = {
Run = {
_args = [
(lib.getExe pkgs.lazyjj)
];
close_on_exit = true;
floating = true;
x = "5%";
y = "5%";
width = "90%";
height = "90%";
};
};
"bind \"Super Shift ]\"" = {
GoToNextTab = { };
};
@@ -208,11 +221,6 @@ in
_args = [ "scroll" ];
};
};
"bind \"Alt k\"" = lib.mkIf pkgs.stdenv.isLinux {
SwitchToMode = {
_args = [ "scroll" ];
};
};
"bind \"Super Shift e\"" = lib.mkIf pkgs.stdenv.isDarwin {
EditScrollback = { };
SwitchToMode = {