diff options
author | Soispha <soispha@vhack.eu> | 2024-02-24 19:59:41 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-24 19:59:41 +0100 |
commit | 54a78095a6ab9b4552676e77ba65441669a103b9 (patch) | |
tree | b6655692d383b91f37dc40ce64b14a2bbc205394 /hm/soispha/conf | |
parent | fix(hm/conf/lf/cmds): Better manage files with pre-defined extensions (diff) | |
download | nixos-config-54a78095a6ab9b4552676e77ba65441669a103b9.zip |
feat(hm/conf/lf/keymappings): Add sorting mappings
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/lf/keybindings/default.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hm/soispha/conf/lf/keybindings/default.nix b/hm/soispha/conf/lf/keybindings/default.nix index 5d7ca0dc..ba84fad2 100644 --- a/hm/soispha/conf/lf/keybindings/default.nix +++ b/hm/soispha/conf/lf/keybindings/default.nix @@ -11,9 +11,16 @@ in e = null; j = null; k = null; - l = null; ";" = null; + # Sorting + ln = ":set sortby natural; set info"; + ls = ":set sortby size; set info size"; + lt = ":set sortby time; set info time"; + la = ":set sortby atime; set info atime"; + lc = ":set sortby ctime; set info ctime"; + le = ":set sortby ext; set info"; + # File Openers ee = "\$\$EDITOR \"$f\""; es = "\$ nvim -S \"$f\""; |