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