2
0
mirror of https://github.com/kazhala/dotbare synced 2024-11-02 09:40:27 +00:00
dotbare/helper/set_variable.sh

56 lines
1.4 KiB
Bash
Raw Normal View History

2020-04-07 06:51:07 +00:00
#!/bin/bash
#
# check env variables and set default variables
#
# @params
# Globals
2020-05-04 23:45:21 +00:00
# ${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
2020-04-24 07:26:45 +00:00
# ${EDITOR}: default editor to use
2020-04-07 06:51:07 +00:00
2020-04-17 04:34:24 +00:00
DOTBARE_DIR="${DOTBARE_DIR:-$HOME/.cfg/}"
DOTBARE_TREE="${DOTBARE_TREE:-$HOME}"
2020-05-04 23:45:21 +00:00
DOTBARE_BACKUP="${DOTBARE_BACKUP:-${XDG_DATA_HOME:-$HOME/.local/share}/dotbare}"
2020-04-24 06:24:29 +00:00
EDITOR="${EDITOR:-vim}"
2020-04-07 06:51:07 +00:00
if [[ -z "${DOTBARE_KEY}" ]]; then
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'
2020-04-07 06:51:07 +00:00
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
FZF_DEFAULT_OPTS="${FZF_DEFAULT_OPTS} --multi"
else
FZF_DEFAULT_OPTS="${FZF_DEFAULT_OPTS} --no-multi"
fi
}