X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=rc;h=40a044fddb6ffd3422d74de9be647e1c62c926f8;hb=115f36dddfe4da2f4326f5bd97de58136b2a5de6;hp=9c55eea96c2fdb1d1d1ca11964af40cd449ae263;hpb=1ed41bc9608bb59582cee6169a779fe4524731f3;p=config%2Fdotfiles.git diff --git a/rc b/rc index 9c55eea..40a044f 100644 --- a/rc +++ b/rc @@ -1,13 +1,17 @@ # lftp configuration file. -# Display all files (even hidden ones) with 'ls'. +# Display all files (including hidden ones) with `ls`. set ftp:list-options -a # Store passwords in the bookmarks file. set bmk:save-passwords yes -# Create new "command" sync which will sync local directories with remote ones -# and transfer all missing/outdated files. Local files which don't exist -# anymore are removed on the server. +# Create "sync" command which syncs local directories with remote ones and +# transfers all missing/outdated files. Local files which don't exist anymore +# are removed on the server. alias sync mirror --verbose --reverse --delete --dereference --exclude .DS_Store + +# Create ".." and "..." commands to go up directory in the tree. +alias .. cd .. +alias ... cd ../..