WIP: lf file manager
This commit is contained in:
parent
d888a41177
commit
1bbaf5e956
|
@ -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
16
user/lf.nix
Normal 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 = ''
|
||||
# '';
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue