19 lines
290 B
Nix
19 lines
290 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
environment = {
|
|
systemPackages = [ pkgs.fzf ];
|
|
shellAliases = {
|
|
vf = "$EDITOR $(fzf)";
|
|
vff = "$EDITOR $(ls|fzf)";
|
|
};
|
|
};
|
|
# integrate fzf into shell, >23.05 only
|
|
programs.fzf = {
|
|
keybindings = true;
|
|
fuzzyCompletion = true;
|
|
};
|
|
}
|