adjust some zellij and helix keybinds

This commit is contained in:
Noah Masur 2025-03-27 13:01:53 -04:00
parent 39d9cb7e5a
commit 6933083cda
No known key found for this signature in database
2 changed files with 71 additions and 84 deletions

View File

@ -35,6 +35,8 @@ in
enable = true;
package = pkgs.helix; # pkgs.evil-helix
languages = {
language-server.nixd = {
@ -117,7 +119,44 @@ in
settings = {
theme = "base16";
keys.normal = {
# Enable and disable inlay hints
space.H = ":toggle lsp.display-inlay-hints";
# Extend selection above
X = "select_line_above";
# Move lines up or down
A-j = [
"extend_to_line_bounds"
"delete_selection"
"paste_after"
];
A-k = [
"extend_to_line_bounds"
"delete_selection"
"move_line_up"
"paste_before"
];
# Copy lines up or down
A-J = [
"extend_to_line_bounds"
"yank"
"paste_after"
];
A-K = [
"extend_to_line_bounds"
"yank"
"paste_before"
];
};
editor = {
# Change cursors depending on the mode
cursor-shape = {
insert = "bar";

View File

@ -18,6 +18,7 @@ in
home.packages = [ pkgs.zellij-switch ];
programs.fish = {
shellAbbrs.z = "zellij";
functions = {
zellij-session = {
# description = "Open a session in Zellij";
@ -59,67 +60,42 @@ in
enableFishIntegration = true;
enableZshIntegration = true;
# Not yet available in unstable
# attachExistingSession = true;
# exitShellOnExit = true;
settings = {
# default_layout = "compact-top";
# Remove border
pane_frames = false;
# Scrollback
scrollback_editor = config.home.sessionVariables.EDITOR;
# plugins = {
# autolock = {
# _props = {
# location = "https://github.com/fresh2dev/zellij-autolock/releases/download/0.2.2/zellij-autolock.wasm";
# };
# is_enabled = {
# _args = [ true ];
# };
# triggers = {
# _args = [ "vim|nvim|hx|git|fzf|zoxide|atuin|gh" ];
# };
# reaction_seconds = {
# _args = [ "0.3" ];
# };
# print_to_log = {
# _args = [ true ];
# };
# };
# };
# load_plugins = {
# autolock = { };
# };
keybinds = {
# _props = {
# clear-defaults = true;
# };
unbind = {
_args = [
"Ctrl g"
"Ctrl h"
"Ctrl n"
"Ctrl o"
"Ctrl p"
"Ctrl q"
"Ctrl s"
"Alt i"
];
};
normal = {
"bind \"Alt l\"" = {
SwitchToMode = {
_args = [ "locked" ];
};
};
"bind \"Alt p\"" = {
SwitchToMode = {
_args = [ "pane" ];
};
};
"bind \"Alt t\"" = {
SwitchToMode = {
_args = [ "tab" ];
};
};
"bind \"Alt r\"" = {
SwitchToMode = {
_args = [ "resize" ];
};
};
"bind \"Alt m\"" = {
SwitchToMode = {
_args = [ "move" ];
};
};
"bind \"Alt k\"" = {
SwitchToMode = {
_args = [ "scroll" ];
};
};
"bind \"Alt o\"" = {
SwitchToMode = {
_args = [ "session" ];
};
};
"bind \"Alt q\"" = {
"Quit" = { };
};
};
shared = {
"bind \"Alt Shift p\"" = {
"Run" = {
_args = [
@ -130,42 +106,14 @@ in
close_on_exit = true;
};
};
"bind \"Super t\"" = {
"NewTab" = { };
};
"bind \"Super Shift ]\"" = {
"GoToPreviousTab" = { };
"GoToNextTab" = { };
};
"bind \"Super Shift [\"" = {
"GoToNextTab" = { };
};
"bind \"Ctrl Tab\"" = {
"GoToNextTab" = { };
};
"bind \"Ctrl Shift Tab\"" = {
"GoToPreviousTab" = { };
};
"bind \"Alt Shift i\"" = {
"MoveTab" = {
_args = [ "Left" ];
};
};
"bind \"Alt Shift o\"" = {
"MoveTab" = {
_args = [ "Right" ];
};
};
};
locked = {
"bind \"Alt l\"" = {
SwitchToMode = {
_args = [ "Normal" ];
};
};
};
session = {
unbind = {
_args = [ "Alt o" ];
"bind \"Super t\"" = {
"NewTab" = { };
};
};