kak: replace fzf.kak with peneira

This commit is contained in:
Natsu Kagami 2022-07-06 12:42:03 -04:00
parent c9ee01f65e
commit 9fcbb9750a
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
4 changed files with 74 additions and 20 deletions

View file

@ -59,8 +59,8 @@ in
(builtins.listToAttrs (map kakouneAutoload ([
# include the original autoload files
{
name = "rc";
src = "${cfg.package}/share/kak/autoload";
name = "00-rc";
src = "${cfg.package}/share/kak/autoload/rc";
}
] ++ cfg.autoload)));
};

View file

@ -48,13 +48,19 @@ with lib;
background_tint = "0.85";
};
in
background // {
# Scrollback (128MBs)
scrollback_pager_history_size = 128;
mkMerge [
background
{
# Scrollback (128MBs)
scrollback_pager_history_size = 128;
# Disable Shell integration (leave it for Nix)
shell_integration = "no-rc";
};
# Disable Shell integration (leave it for Nix)
shell_integration = "no-rc";
# Allow remote control (for kakoune integration)
allow_remote_control = true;
}
];
keybindings = { };
};