]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - lftp/rc
9fee20192ea1065228965c59115b0bfc77ae1049
[config/dotfiles.git] / lftp / rc
1 # lftp configuration file.
2
3 # Copyright (C) 2007-2013  Simon Ruderich
4 #
5 # This file is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This file is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # SETTINGS
20
21 # Display all files (including hidden ones) with `ls`.
22 set ftp:list-options -a
23
24 # Store passwords in the bookmarks file.
25 set bmk:save-passwords yes
26
27 # Use a colorized prompt. Hostname in green, current directory in blue.
28 set cmd:prompt "lftp \[\e[01;32m\]\h\[\e[00m\]:\[\e[01;34m\]\w\[\e[00m\] % "
29
30 # No retries after a failed connection, prevents (long) delays e.g. for
31 # automated jobs.
32 set net:max-retries 1
33
34
35 # ALIASES
36
37 # Create "sync" command which syncs local directories with remote ones and
38 # transfers all missing/outdated files. Local files which don't exist anymore
39 # are removed on the server.
40 alias sync mirror --verbose --reverse --delete --dereference
41
42 # Create commands to go up directories.
43 alias .. cd ..
44 alias ... cd ../..
45 alias .... cd ../../..