1
0
Fork 0
dotfiles/.config/lf/lfrc

210 lines
5.4 KiB
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
# Basic vars
set ratios 1:2:4
2022-07-04 21:36:33 +02:00
set shellopts '-eu'
set ifs "\n"
2022-10-24 18:10:24 +02:00
set findlen 1
2022-07-04 21:36:33 +02:00
set scrolloff 10
set icons
2022-08-03 14:39:17 +02:00
set wrapscroll
2022-07-04 21:36:33 +02:00
set period 1
set previewer ~/.config/lf/preview
2022-07-06 13:21:33 +02:00
set cleaner ~/.config/lf/clean
2023-06-16 10:20:47 +02:00
set cursorpreviewfmt "\033[7;90m"
set promptfmt "\033[34;1m%u\033[36m@\033[34m%h \033[35m[\033[0;1m%d\033[35m]\033[32m » \033[33m%f\033[0m"
2022-07-04 21:36:33 +02:00
2023-05-31 11:27:31 +02:00
cmd open $set -f; rifle -c $XDG_CONFIG_HOME/lf/rifle.conf -p 0 $fx; clear
2023-05-31 11:26:50 +02:00
cmd open-with ${{
clear
set -f
2023-05-31 11:27:31 +02:00
rifle -c $XDG_CONFIG_HOME/lf/rifle.conf -l $fx
2023-05-31 11:26:50 +02:00
read -p "Open with: " method
2023-05-31 11:27:31 +02:00
rifle -c $XDG_CONFIG_HOME/lf/rifle.conf -p $method $fx
2023-05-31 11:26:50 +02:00
clear
2022-07-04 21:36:33 +02:00
}}
cmd mkdir $mkdir -p "$(echo $* | tr ' ' '\ ')"
cmd extract ${{
clear; tput cup $(($(tput lines)/3)); tput bold
set -f
printf "%s\n\t" "$fx"
printf "extract?[y/N]"
read ans
clear
[ $ans = "y" ] && aunpack $fx
2022-07-04 21:36:33 +02:00
}}
cmd delete ${{
clear; tput cup $(($(tput lines)/3)); tput bold
set -f
printf "%s\n\t" "$fx"
printf "delete?[y/N]"
read ans
clear
[ $ans = "y" ] && rm -rf -- $fx
2022-07-04 21:36:33 +02:00
}}
2022-07-07 16:23:55 +02:00
cmd trash ${{
2023-11-17 11:12:50 +01:00
for f in $fx; do
echo $f
trash-put $f &
done
2022-07-07 16:23:55 +02:00
}}
2022-07-04 21:36:33 +02:00
cmd rsyncto ${{
clear; tput cup $(($(tput lines)/3)); tput bold
set -f
2023-06-28 18:48:05 +02:00
clear; echo -n "rsync -azvhP <selected files> "
read dest
clear
for x in $fx; do
2023-06-28 18:48:05 +02:00
eval rsync -azvhP \"$x\" \"$dest\"
done &&
notify-send "File(s) rsynced." "File(s) copies to $dest."
2022-07-04 21:36:33 +02:00
}}
2022-07-06 16:41:11 +02:00
# y (select for copy) and P to paste soft-link
# d (select for cut) and P to paste hard-link
cmd link %{{
set -- $(cat ~/.local/share/lf/files)
mode="$1"
shift
if [ "$#" -lt 1 ]; then
lf -remote "send $id echo no files to link"
exit 0
fi
case "$mode" in
# symbolically copy mode is indicating a soft link
copy) ln -sr -t . -- "$@";;
# while a move mode is indicating a hard link
move) ln -t . -- "$@";;
esac
rm ~/.local/share/lf/files
lf -remote "send clear"
}}
2022-07-04 21:36:33 +02:00
cmd bulkrename $vidir
cmd on-cd &{{
2023-06-14 22:08:16 +02:00
printf "%b" "\033]0;$(zsh -c 'source $XDG_CONFIG_HOME/zsh/configs/autogenerated/hashes; print -Pn "$USER@$HOST [%3~]"') \007" > /dev/tty
fmt="\033[34;1m%u\033[36m@\033[34m%h \033[35m[\033[0;1m$(zsh -c 'source $XDG_CONFIG_HOME/zsh/configs/autogenerated/hashes; print -Pn "%3~"')\033[35m]\033[32m » \033[33m%f\033[0m"
2023-06-14 21:03:45 +02:00
lf -remote "send $id set promptfmt \"$fmt\""
2022-07-07 16:23:55 +02:00
}}
on-cd
cmd on-quit ${{
DIR=$(echo $PWD | sed "s|$HOME|~|")
printf "\033]0; $DIR\007" > /dev/tty
}}
2022-07-07 16:23:55 +02:00
2022-09-15 20:27:44 +02:00
cmd paste &{{
set -- $(cat ~/.local/share/lf/files)
mode="$1"
shift
case "$mode" in
2023-11-17 11:12:50 +01:00
copy)
rsync -av --ignore-existing --progress -- "$@" . |
stdbuf -i0 -o0 -e0 tr '\r' '\n' |
while IFS= read -r line; do
lf -remote "send $id echo $line"
done
;;
2022-09-15 20:27:44 +02:00
move) mv -n -- "$@" .;;
esac
rm ~/.local/share/lf/files
lf -remote "send clear"
}}
2023-03-21 19:21:46 +01:00
cmd dupe %{{
for file in $fx; do
find "$PWD" "$file" -maxdepth 0 | grep -oP '(?<=.\.~)\d+(?=~$)' | sort -n | tail -1 | (
ext=$(($(cat /dev/stdin)+1))
filedest="$(echo "$file" | sed 's/.~[[:digit:]]*~$//').~$ext~"
cp -r "$file" "$filedest"
)
done
}}
2023-06-13 23:33:15 +02:00
cmd edit ${{
clear
2023-06-13 23:33:15 +02:00
if [ -f $f ] && [ -w $f ]; then
$EDITOR $f
2023-06-13 23:33:15 +02:00
elif [ -f $f ]; then
sudo -e $f
fi
clear
}}
# cmd share $curl -F"file=@$fx" https://0x0.snaile.de | xclip -r -selection c
2022-07-07 16:23:55 +02:00
2023-03-21 19:21:46 +01:00
cmd fzfsearch ${{
file="$(fzf)"
2023-04-04 11:42:59 +02:00
[ -d $file ] && lf -remote "send $id cd $file" && return 0
2023-03-21 19:21:46 +01:00
[ -f $file ] && lf -remote "send $id select $file"
}}
cmd fzftags ${{
file="$(cat ${XDG_DATA_HOME:-$HOME/.local/share}/lf/tags | sed 's/:\*$//' | fzf)"
2023-04-04 11:42:59 +02:00
[ -d $file ] && lf -remote "send $id cd $file" && return 0
2023-03-21 19:21:46 +01:00
[ -f $file ] && lf -remote "send $id select $file"
}}
cmd fzfmarks ${{
file="$(cat ${XDG_DATA_HOME:-$HOME/.local/share}/lf/marks | sed 's/^.://' | fzf)"
2023-04-04 11:42:59 +02:00
[ -d $file ] && lf -remote "send $id cd $file" && return 0
2023-03-21 19:21:46 +01:00
[ -f $file ] && lf -remote "send $id select $file"
}}
2023-11-17 11:12:50 +01:00
cmd fzfshortcut ${{
file="$(cat ${XDG_CONFIG_HOME:-$HOME/.config}/lf/shortcutrc | cut -d '"' -f2 | fzf)"
[ -d $file ] && lf -remote "send $id cd $file" && return 0
[ -f $file ] && lf -remote "send $id select $file"
2023-03-21 19:21:46 +01:00
}}
2023-06-15 17:27:56 +02:00
cmd fzfgrep ${{
RG_PREFIX="rg --column --line-number --no-heading --color=always --smart-case "
res="$(
FZF_DEFAULT_COMMAND="$RG_PREFIX ''" \
fzf --bind "change:reload:$RG_PREFIX {q} || true" \
--ansi --layout=reverse --header 'Search in files' \
| cut -d':' -f1 | sed 's/\\/\\\\/g;s/"/\\"/g'
)"
[ -n "$res" ] && lf -remote "send $id select \"$res\""
}}
2023-03-21 19:21:46 +01:00
2022-07-04 21:36:33 +02:00
# Bindings
2023-03-21 19:21:46 +01:00
map <c-c>a fzfsearch
map <c-c>t fzftags
map <c-c>m fzfmarks
2023-11-17 11:12:50 +01:00
map <c-c>f fzfshortcut
2023-06-15 17:27:56 +02:00
map <c-c>g fzfgrep
map D trash
map <c-d> $trash-restore $PWD
map T delete
2022-10-27 09:36:14 +02:00
map <c-e> extract
2022-07-04 21:36:33 +02:00
map R rsyncto
2022-07-06 16:41:11 +02:00
map P link
# map S share
2022-08-03 14:39:17 +02:00
map <c-g> $lazygit
2022-10-20 09:47:36 +02:00
map <c-v> push :!$EDITOR<space>
2022-07-04 21:36:33 +02:00
map <c-n> push :mkdir<space>
2022-10-20 09:47:36 +02:00
map <c-t> push :&touch<space>
2022-07-04 21:36:33 +02:00
map <c-r> reload
map <c-s> set hidden!
map <enter> shell
map x $$f
map X !$f
2023-05-31 11:26:50 +02:00
map o open-with
2023-06-21 00:55:58 +02:00
map a :rename; cmd-home # rename from beginning
map r :rename; cmd-end # rename from end
map i :rename # before extension
map c push r<c-u> # new rename
2022-07-04 21:36:33 +02:00
map B bulkrename
map b dupe
2022-09-17 02:39:38 +02:00
map u :clear; unselect
map n &echo $f | xclip -r -selection c
2022-10-28 12:16:11 +02:00
map <esc> quit
2022-11-07 10:21:29 +01:00
map g/ cd "/"
2023-06-15 17:27:56 +02:00
map W &setsid $TERMINAL -e lf
map e edit
2022-10-21 17:52:11 +02:00
# Load bookmark shortcuts
source "~/.config/lf/shortcutrc"