@ -1,6 +1,5 @@
#shellcheck disable=SC2034
BROWSER=firefox
EDITOR=vim
HISTCONTROL=ignoredups:erasedups:ignorespace
HISTFILESIZE=
HISTSIZE=
@ -2,6 +2,12 @@
alias slugify="sed -e 's/[^[:alnum:]]/-/g' | tr -s '-' | tr A-Z a-z"
if type nvim >/dev/null 2>/dev/null ; then
export EDITOR=nvim
else
export EDITOR=vim
fi
source_env_file () {
if [ ! -f "${1}" ]; then
return