some basic zellij and helix configs

This commit is contained in:
Noah Masur 2025-03-18 21:47:40 -04:00
parent 8e7ccbda59
commit fa1482dcfc
No known key found for this signature in database
2 changed files with 86 additions and 4 deletions

View File

@ -41,10 +41,29 @@ in
settings = {
theme = "base16";
editor.cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
editor = {
# Change cursors depending on the mode
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
# View line numbers relative to the current cursors
line-number = "relative";
# Show whitespace visible to the user
# Waiting for trailing whitespace option ideally
whitespace = {
render = {
# space = "all";
tab = "all";
};
characters = {
# space = "·";
tab = "";
};
};
};
};

View File

@ -22,6 +22,69 @@ in
enableZshIntegration = true;
settings = {
# Remove border
pane_frames = false;
keybinds = {
# _props = {
# clear-defaults = true;
# };
unbind = {
_args = [
"Ctrl p"
"Ctrl n"
"Ctrl o"
"Ctrl s"
];
};
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 = [ "search" ];
};
};
"bind \"Alt o\"" = {
SwitchToMode = {
_args = [ "session" ];
};
};
"bind \"Alt q\"" = {
"Quit" = { };
};
};
locked = {
"bind \"Alt l\"" = {
SwitchToMode = {
_args = [ "Normal" ];
};
};
};
};
theme = "custom";
themes.custom = {
fg = "${config.theme.colors.base05}";