nix-configs/modules/shell/mprocs.nix

25 lines
495 B
Nix
Raw Permalink Normal View History

2024-02-28 16:05:28 +00:00
{...}: {
home-manager.users.jade = {
pkgs,
lib,
...
}: {
home = {
packages = [pkgs.mprocs];
};
xdg.configFile."mprocs/mprocs.yaml" = {
text = builtins.toJSON {
proc_list_width = 15;
2024-02-29 18:48:45 +00:00
keymap_procs = {
"<l>" = {c = "toggle-focus";};
};
keymap_term = {
"<C-a>" = null;
# Ctrl-m so it doesnt overlap with zellij or helix
"<C-M>" = {c = "toggle-focus";};
};
2024-02-28 16:05:28 +00:00
};
};
};
}