mirror of
https://github.com/kazhala/dotbare
synced 2024-11-02 09:40:27 +00:00
542bc0838c
fix: test .. test: improve wording and variable names in test .. ..
57 lines
1.5 KiB
Bash
57 lines
1.5 KiB
Bash
#!/usr/bin/env bash
|
|
#
|
|
# check env variables and set default variables
|
|
#
|
|
# @params
|
|
# Globals
|
|
# ${DOTBARE_DIR}: location of the bare repo
|
|
# ${DOTBARE_TREE}: which folder is the bare repo tracking
|
|
# ${DOTBARE_BACKUP}: backup directory for all tracked files
|
|
# ${DOTBARE_KEY}: defualt key bindings
|
|
# ${FZF_DEFAULT_OPTS}: update FZF_DEFAULT_OPTS to reflect dotbare changes
|
|
# ${DOTBARE_FZF_DEFAULT_OPTS}: user custom setting for dotbare
|
|
# ${EDITOR}: default editor to use
|
|
|
|
export DOTBARE_DIR="${DOTBARE_DIR:-$HOME/.cfg/}"
|
|
export DOTBARE_TREE="${DOTBARE_TREE:-$HOME}"
|
|
export DOTBARE_BACKUP="${DOTBARE_BACKUP:-${XDG_DATA_HOME:-$HOME/.local/share}/dotbare}"
|
|
export DOTBARE_VERSION="v1.1.0"
|
|
|
|
export EDITOR="${EDITOR:-vim}"
|
|
if [[ -z "${DOTBARE_KEY}" ]]; then
|
|
export DOTBARE_KEY="
|
|
--bind=alt-a:toggle-all
|
|
--bind=alt-w:jump
|
|
--bind=alt-0:top
|
|
--bind=alt-s:toggle-sort
|
|
--bind=alt-t:toggle-preview
|
|
"
|
|
fi
|
|
|
|
[[ -z "${FZF_DEFAULT_OPTS}" ]] && export FZF_DEFAULT_OPTS='--cycle'
|
|
|
|
export FZF_DEFAULT_OPTS="
|
|
$FZF_DEFAULT_OPTS
|
|
--ansi
|
|
--cycle
|
|
--exit-0
|
|
$DOTBARE_FZF_DEFAULT_OPTS
|
|
$DOTBARE_KEY
|
|
"
|
|
|
|
#######################################
|
|
# determine to set multi selection or not
|
|
# Globals:
|
|
# ${FZF_DEFAULT_OPTS}: fzf options
|
|
# Arguments:
|
|
# $1: if exists, disable multi, set single
|
|
#######################################
|
|
function set_fzf_multi() {
|
|
local no_multi="$1"
|
|
if [[ -z "${no_multi}" ]]; then
|
|
export FZF_DEFAULT_OPTS="${FZF_DEFAULT_OPTS} --multi"
|
|
else
|
|
export FZF_DEFAULT_OPTS="${FZF_DEFAULT_OPTS} --no-multi"
|
|
fi
|
|
}
|