]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - rc
Add setup support.
[config/dotfiles.git] / rc
1 # lftp configuration file.
2
3
4 # Display all files (even hidden ones) with 'ls'.
5 set ftp:list-options -a
6
7 # Store passwords in the bookmarks file.
8 set bmk:save-passwords yes
9
10 # Create "sync" command which syncs local directories with remote ones and
11 # transfers all missing/outdated files. Local files which don't exist anymore
12 # are removed on the server.
13 alias sync mirror --verbose --reverse --delete --dereference --exclude .DS_Store
14
15 # Create ".." and "..." commands to go up directory in the tree.
16 alias .. cd ..
17 alias ... cd ../..