From 38bab29776950ac2364ed64195b89887717c33de Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Thu, 1 Jan 1970 03:00:00 +0300 Subject: chore: init --- lftp/.local/etc/lftp/rc | 14 ++++++++++++++ lftp/@install | 10 ++++++++++ 2 files changed, 24 insertions(+) create mode 100644 lftp/.local/etc/lftp/rc create mode 100755 lftp/@install (limited to 'lftp') diff --git a/lftp/.local/etc/lftp/rc b/lftp/.local/etc/lftp/rc new file mode 100644 index 0000000..482fb6a --- /dev/null +++ b/lftp/.local/etc/lftp/rc @@ -0,0 +1,14 @@ +set bmk:save-passwords false + +set cache:cache-empty-listings false +set cache:enable true + +set cmd:prompt "\[\e[34m\]\u\[\e[0;34m\]\@\[\e[1m\]\h\[\e[1;30m\]:\[\e[1;34m\]\w\[\e[1;30m\] > \[\e[0m\]" +set cmd:remote-completion true +set cmd:save-cwd-history false +set cmd:save-rl-history false + +set color:use-color auto + +set ftp:ssl-allow true +set ftp:ssl-force true diff --git a/lftp/@install b/lftp/@install new file mode 100755 index 0000000..3e0ee65 --- /dev/null +++ b/lftp/@install @@ -0,0 +1,10 @@ +#!/bin/sh + +[ ! -d "${XDG_CONFIG_HOME}/lftp" ] && \ + mkdir -p "${XDG_CONFIG_HOME}/lftp" + +stow \ + --target="${HOME}" \ + --ignore="^@.*" \ + --verbose \ + lftp -- cgit 1.4.1