1.1.0 Added dotfiles from my old PC

This commit is contained in:
2020-10-02 22:43:43 +02:00
parent 1d0d2bdd53
commit 49f2ea379d
102 changed files with 10692 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
function fzf
set -l epoch (date "+%s")
set -l file_path $TMPDIR/fzf-$epoch.result
command fzf $argv >$file_path
if test $status -eq 0 -a -s $file_path
cat $file_path
end
if test -e $file_path
rm $file_path
end
end