neovim-confs/install.sh

217 lines
4.5 KiB
Bash
Raw Normal View History

2021-08-04 05:38:03 +02:00
#!/bin/bash
2021-03-19 02:42:44 +01:00
2021-08-03 04:23:20 +02:00
RED='\033[0;31m'
GREEN='\033[0;32m'
ORANGE='\033[0;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
2021-08-04 07:11:15 +02:00
REPO="https://github.com/siduck76/NvChad.git"
2021-08-04 06:17:40 +02:00
skip=0
2021-08-04 07:11:15 +02:00
nvchad_path="$HOME/.config/nvim/"
dependencies=(
"git"
)
preserved_files=(
"lua/mappings.lua"
"lua/user_config.lua"
)
2021-08-04 06:17:40 +02:00
2021-08-03 04:23:20 +02:00
# https://stackoverflow.com/questions/5947742/how-to-change-the-output-color-of-echo-in-linux
prompt() {
case ${1} in
"-s" | "--success")
printf "${GREEN}%s${NC}\n" "${2}"
;;
"-e" | "--error")
printf "${RED}%s${NC}\n" "${2}"
;;
"-w" | "--warning")
printf "${ORANGE}%s${NC}\n" "${2}"
;;
"-i" | "--info")
printf "${BLUE}%s${NC}\n" "${2}"
;;
*)
printf "${GREEN}%s${NC}\n" "${2}"
;;
esac
}
2021-03-27 03:50:15 +01:00
2021-08-03 04:23:20 +02:00
_usage() {
printf "%s" \
2021-08-04 07:11:15 +02:00
"Usage: ./${0##*/} [ options ]
2021-08-04 06:09:18 +02:00
-h, --help -> Show this help.
-i, --install -> Install the config.
-r, --remove -> Remove the config.
-u, --update -> Update the existing config without removing existing stuff.
2021-08-03 04:23:20 +02:00
"
}
2021-08-04 07:11:15 +02:00
_remove() {
prompt -w "Removing config -> ($HOME/.config/nvim/)"
# rm -rf "$HOME/.config/nvim/"
prompt -w "Removing miscellaneous -> ($HOME/.local/share/nvim/)"
# rm -rf "$HOME/.local/share/nvim/"
prompt -w "Removing cache -> ($HOME/.cache/nvim/)"
# rm -rf "$HOME/.cache/nvim/"
}
_check_dependencies() {
local err
for i in "${dependencies[@]}"; do
if ! command -v "${i}" &> /dev/null
then
prompt -e "Error: You need to install the dependency '${i}'"
err="true"
fi
done
if [[ "${err}" == "true" ]]; then
exit 1
fi
}
_fetch() {
printf " + %s\n" "$(prompt -i "Fetching repo...")"
git clone -n ${REPO} --depth 1 "${nvchad_path}"
cd "${nvchad_path}" || return
printf " + %s\n" "$(prompt -i "Checking out core...")"
git checkout HEAD lua/
printf " + %s\n" "$(prompt -i "Checking out init file...")"
git checkout HEAD init.lua
}
_install() {
prompt -w "-> Checking dependencies..."
_check_dependencies
prompt -w "-> Cloning..."
_fetch
}
# _update() {}
2021-08-03 04:23:20 +02:00
2021-08-04 06:09:18 +02:00
_skip_ahead() {
amount=$1
skip=$((skip + amount))
}
2021-08-04 05:38:03 +02:00
_parse_args() {
2021-08-04 06:09:18 +02:00
local func_args=$1
2021-08-04 05:38:03 +02:00
local argv=("$@")
2021-08-04 06:09:18 +02:00
unset 'argv[0]' # becuase arg1 is $func_arg
for i in "${!argv[@]}"; do new_array+=( "${argv[i]}" ); done
argv=("${new_array[@]}")
unset new_array
2021-08-04 05:38:03 +02:00
local argc=${#argv[@]}
_skip_ahead() {
amount=$1
skip=$((skip + amount))
}
_clean_arg() {
arg=$1
if [[ "$arg" == "--"* ]]; then
echo "${arg:2}"
elif [[ "$arg" == "-"* ]]; then
echo "${arg:1}"
fi
}
for j in "${!argv[@]}"; do
if [[ ${skip} -gt 0 ]]; then
left=$((argc - j))
while [[ ${skip} > ${left} ]]; do ((skip--)); done
skip=$((skip - 1))
continue
fi
case ${argv[j]} in
--*) # End of all options.
case ${argv[j]} in
--) # End of all options.
break
;;
*)
2021-08-04 06:09:18 +02:00
# eval "${func_args}" "$(_clean_arg "${argv[j]}")" "$j"
eval "${func_args}" "${argv[j]}" "$j"
2021-08-04 05:38:03 +02:00
;;
esac
;;
-*)
2021-08-04 06:09:18 +02:00
if [[ ${#argv[j]} -le 2 ]]; then
eval "${func_args}" "${argv[j]}" "$j"
else
tangled_args=$(_clean_arg "${argv[j]}")
for ((k = 0; k < ${#tangled_args}; k++)); do
eval "${func_args}" "-${tangled_args:$k:1}" "$j"
done
fi
2021-08-04 05:38:03 +02:00
;;
*)
2021-08-04 06:09:18 +02:00
eval "${func_args}" "${argv[j]}" "$j"
2021-08-04 05:38:03 +02:00
;;
esac
done
}
main() {
2021-08-04 06:09:18 +02:00
local argvs=("$@")
local argc=${#argvs[@]}
2021-08-04 05:38:03 +02:00
2021-08-04 07:11:15 +02:00
assert_aditional_args() {
var=$1 # flag
index=$2 # flag's index
case ${var} in
-p=* | --path=*)
nvchad_path="${var#*=}"
;;
esac
}
assert_args() {
2021-08-04 06:09:18 +02:00
var=$1 # flag
index=$2 # flag's index
2021-08-04 05:38:03 +02:00
case ${var} in
2021-08-04 06:09:18 +02:00
-h | --help)
2021-08-03 04:23:20 +02:00
_usage
;;
2021-08-04 06:09:18 +02:00
-i | --install)
2021-08-04 07:11:15 +02:00
prompt -i "Installing NvChad..."
_install
2021-08-03 04:23:20 +02:00
;;
2021-08-04 06:09:18 +02:00
-r | --remove)
2021-08-04 07:11:15 +02:00
prompt -i "Removing NvChad..."
_remove
2021-08-03 04:23:20 +02:00
;;
2021-08-04 07:11:15 +02:00
-u | --update)
prompt -i "Updating NvChad..."
;;
-p=* | --path=*) ;;
2021-08-04 05:38:03 +02:00
*)
2021-08-04 06:09:18 +02:00
prompt -w "Warning: unknown command '${var}'"
2021-08-03 04:23:20 +02:00
;;
esac
2021-08-04 05:38:03 +02:00
}
2021-08-04 07:11:15 +02:00
_parse_args "assert_aditional_args" "${argvs[@]}"
_parse_args "assert_args" "${argvs[@]}"
2021-08-03 04:23:20 +02:00
}
2021-08-04 06:17:40 +02:00
init() {
if [ $# -eq 0 ]; then
prompt -e "ERROR: This script needs at least one argument"
else
main "${@}"
fi
}
2021-08-04 06:17:40 +02:00
init "${@}"