Split rest of home-manager config
This commit is contained in:
parent
b7e2ecbd46
commit
e1edfe1edc
12 changed files with 344 additions and 291 deletions
25
users/functionalhacker/programs/zellij.nix
Normal file
25
users/functionalhacker/programs/zellij.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
settings = {
|
||||
theme = "kanagawa";
|
||||
session_serialization = false;
|
||||
keybinds = {
|
||||
unbind = "Ctrl g";
|
||||
shared_except = {
|
||||
_args = [ "locked" ];
|
||||
"bind \"Ctrl l\"" = {
|
||||
SwitchToMode = "Locked";
|
||||
};
|
||||
};
|
||||
locked = {
|
||||
"bind \"Ctrl l\"" = {
|
||||
SwitchToMode = "Normal";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue