WIP: lf file manager

This commit is contained in:
lelgenio 2022-12-14 17:56:22 -03:00
parent d888a41177
commit 1bbaf5e956
2 changed files with 17 additions and 0 deletions

View file

@ -23,6 +23,7 @@ in {
./bmenu.nix
./fzf.nix
./ranger
./lf.nix
./pass.nix
./man.nix
inputs.hyprland.homeManagerModules.default

16
user/lf.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, inputs, ... }: {
programs.lf = {
enable = true;
keybindings = {
"n" = "updir";
"e" = "down";
"i" = "up";
"o" = "open";
};
settings = {
icons = true;
};
# xdg.configFile."lf/colors".text = ''
# '';
};
}