myconfig.nvim/install.sh

30 lines
370 B
Bash
Raw Normal View History

2024-06-01 23:34:37 +08:00
#!/usr/bin/env bash
echo "NeoVim Configuration Installation Script is Running..."
cd ~
CONFIGBASE="myconfig.nvim"
CONFIG_DIR=".config/nvim"
TIMESTAMP=$(date "+%Y-%m-%d_%H:%M:%S")
echo "Backup" "$CONFIG_DIR" to "$CONFIG_DIR" "_" "$TIMESTAMP"
if [ -d "$CONFIG_DIR" ]; then
else
fi
git clone http://8.130.160.147:3000/Configs/$CONFIGBASE.git
git clone