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; enable = true;
package = pkgs.helix; # pkgs.evil-helix
languages = { languages = {
language-server.nixd = { language-server.nixd = {
@ -117,7 +119,44 @@ in
settings = { settings = {
theme = "base16"; 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 = { editor = {
# Change cursors depending on the mode # Change cursors depending on the mode
cursor-shape = { cursor-shape = {
insert = "bar"; insert = "bar";

View File

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