nixos/home/lf/default.nix
2024-03-13 21:38:55 +01:00

25 lines
450 B
Nix

{ pkgs, config, ... }: {
home.packages = with pkgs; [ pistol ];
programs.lf = {
enable = true;
keybindings = {
# I find x to be a better cut, and save d for delete
d = "delete";
x = "cut";
"<enter>" = "open";
"<c-g>" = "quit";
"<esc>" = "quit";
};
previewer.source = "${pkgs.pistol}/bin/pistol";
extraConfig = ''
set hidden
set nodirfirst
set incsearch
'';
};
}