add lf program

This commit is contained in:
Ivan Dimitrov 2023-08-20 22:24:15 +03:00
parent ec0686d697
commit ce73efeb28
3 changed files with 12 additions and 1 deletions

View File

@ -20,6 +20,7 @@
gopass gopass
gopass-jsonapi gopass-jsonapi
pavucontrol pavucontrol
bat
# programming # programming
nixfmt nixfmt
sqlite sqlite

View File

@ -1,5 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }: {
imports = [ ./neovim ./sway ./tmux.nix ./zsh.nix ]; imports = [ ./neovim ./sway ./tmux.nix ./zsh.nix ./lf ];
programs = { programs = {
thunderbird = { thunderbird = {

View File

@ -0,0 +1,10 @@
{ pkgs, ... }: {
programs = {
lf = {
enable = true;
keybindings = {
D = "delete";
};
};
};
}