lf: add theme and previewer

This commit is contained in:
lelgenio 2022-12-16 17:52:58 -03:00
parent 0dea94a913
commit b0ecdda4b9
5 changed files with 576 additions and 3 deletions

18
user/lf/default.nix Normal file
View file

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