mirror of
https://github.com/nmasur/dotfiles
synced 2025-04-04 23:51:11 +00:00
adjust some zellij and helix keybinds
This commit is contained in:
parent
39d9cb7e5a
commit
6933083cda
@ -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";
|
||||||
|
@ -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;
|
||||||
|
# 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 = {
|
keybinds = {
|
||||||
# _props = {
|
|
||||||
# clear-defaults = true;
|
|
||||||
# };
|
|
||||||
unbind = {
|
|
||||||
_args = [
|
|
||||||
"Ctrl g"
|
|
||||||
"Ctrl h"
|
|
||||||
"Ctrl n"
|
|
||||||
"Ctrl o"
|
|
||||||
"Ctrl p"
|
|
||||||
"Ctrl q"
|
|
||||||
"Ctrl s"
|
|
||||||
"Alt i"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
normal = {
|
normal = {
|
||||||
"bind \"Alt l\"" = {
|
};
|
||||||
SwitchToMode = {
|
shared = {
|
||||||
_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" = { };
|
|
||||||
};
|
|
||||||
"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" ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user