10 lines
317 B
Bash
10 lines
317 B
Bash
# shellcheck shell=sh
|
|
# shellcheck disable=SC2034 # Variables defined here are meant to be used in the
|
|
# script that sources this file.
|
|
|
|
# Where to install the dotfiles, usually $HOME.
|
|
DESTDIR="$HOME"
|
|
|
|
# Git user information.
|
|
GIT_USER="Fernando Schauenburg"
|
|
GIT_EMAIL="dev@schauenburg.me"
|