blob: 96ab39c760c80259fa4e15332b84853fe27b68f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
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;
};
}
|