Former-commit-id: 8bda501d16
This commit is contained in:
Hadi
2024-03-13 23:32:40 +01:00
parent e9480830d8
commit 31ace98f68
12 changed files with 654 additions and 14 deletions

View File

@@ -4,21 +4,29 @@
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";
"H" = "set hidden!";
};
settings = { ratios = [ 1 1 2 ]; };
previewer.source = "${pkgs.pistol}/bin/pistol";
extraConfig = ''
set hidden
set nodirfirst
set incsearch
set nodirfirst
set incsearch
set icons
set drawbox
'';
};
xdg.configFile."lf" = {
recursive = true;
source = ./config;
};
}