mirror of
https://github.com/gwebu-team/profile.d.git
synced 2025-12-15 12:35:47 +00:00
15 lines
283 B
Bash
Executable file
15 lines
283 B
Bash
Executable file
if [ "${BASH_SOURCE-}" = "$0" ]; then
|
|
echo -e "You must source this script:\n\tsource $0" >&2
|
|
exit 33
|
|
fi
|
|
|
|
EDITOR=mcedit
|
|
export EDITOR
|
|
|
|
HISTSIZE=20480
|
|
export HISTSIZE
|
|
|
|
if [ -x /usr/bin/fzf ]; then
|
|
FZF_DEFAULT_OPTS="--history-size=$HISTSIZE"
|
|
export FZF_DEFAULT_OPTS
|
|
fi
|