Files
config/lf/lfrc
2025-07-02 00:06:47 -07:00

19 lines
334 B
Plaintext

set ignorecase true
set info size:time
# bindings
map . set hidden!
map <delete> delete
map S shell
map s calcdirsize
map <enter> $bash
map b $btop
# run shell scripts by pressing l on them
map l ${{
case $(file --mime-type -b "$f") in
text/x-shellscript) sh "$f" ;;
*) lf -remote "send $id open" ;;
esac
}}