Sun Jun 2 01:05:51 PM CEST 2024
This commit is contained in:
parent
2128e9dc94
commit
4f819189a0
|
@ -6,6 +6,7 @@
|
||||||
(import ./modules/nvim/config.nix)
|
(import ./modules/nvim/config.nix)
|
||||||
(import ./modules/email/config.nix)
|
(import ./modules/email/config.nix)
|
||||||
(import ./modules/rofi/config.nix)
|
(import ./modules/rofi/config.nix)
|
||||||
|
(import ./modules/lf/config.nix)
|
||||||
(import ./modules/hyprland/config.nix { inherit inputs config pkgs; })
|
(import ./modules/hyprland/config.nix { inherit inputs config pkgs; })
|
||||||
(import ./modules/waybar/config.nix { inherit inputs config pkgs; })
|
(import ./modules/waybar/config.nix { inherit inputs config pkgs; })
|
||||||
];
|
];
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.lf = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
icons = true;
|
||||||
|
autoquit = true;
|
||||||
|
mouse = true;
|
||||||
|
number = true;
|
||||||
|
relativenumber = true;
|
||||||
|
cursorpreviewfmt = "";
|
||||||
|
};
|
||||||
|
keybindings = {
|
||||||
|
"<backspace2>" = "quit";
|
||||||
|
"<c-e>" = "half-up";
|
||||||
|
"." = "set hidden!";
|
||||||
|
"o" = "$nvim -c \"lua require(\\\"oil\\\").open(\\\"$PWD\\\")\"";
|
||||||
|
"-" = "$nvim -c \"lua require(\\\"oil\\\").open(\\\"$PWD\\\")\"";
|
||||||
|
"<enter>" = "open";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue