mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 21:42:16 -06:00
feat: added zellij hotkeys
This commit is contained in:
parent
d846d140bb
commit
206415a6f7
1 changed files with 49 additions and 0 deletions
|
|
@ -1,8 +1,57 @@
|
||||||
|
{ lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.zellij = {
|
programs.zellij = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
theme = "catppuccin-mocha";
|
theme = "catppuccin-mocha";
|
||||||
|
default_shell = lib.getExe pkgs.nushell;
|
||||||
|
keybinds.normal._children = [
|
||||||
|
|
||||||
|
{
|
||||||
|
bind = {
|
||||||
|
_args = [
|
||||||
|
"Alt Left"
|
||||||
|
"Alt c"
|
||||||
|
];
|
||||||
|
_children = [
|
||||||
|
{ MoveFocus._args = [ "Left" ]; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
bind = {
|
||||||
|
_args = [
|
||||||
|
"Alt Up"
|
||||||
|
"Alt a"
|
||||||
|
];
|
||||||
|
_children = [
|
||||||
|
{ MoveFocus._args = [ "Up" ]; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
bind = {
|
||||||
|
_args = [
|
||||||
|
"Alt Down"
|
||||||
|
"Alt e"
|
||||||
|
];
|
||||||
|
_children = [
|
||||||
|
{ MoveFocus._args = [ "Down" ]; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
bind = {
|
||||||
|
_args = [
|
||||||
|
"Alt Right"
|
||||||
|
"Alt i"
|
||||||
|
];
|
||||||
|
_children = [
|
||||||
|
{ MoveFocus._args = [ "Right" ]; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue