kak: replace fzf.kak with peneira
This commit is contained in:
parent
c9ee01f65e
commit
9fcbb9750a
4 changed files with 74 additions and 20 deletions
|
@ -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)));
|
||||
};
|
||||
|
|
|
@ -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 = { };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue