This commit is contained in:
Wenwen Zhang 2024-06-01 23:34:37 +08:00
parent 7a903cc425
commit 17ca00ae10
2 changed files with 36 additions and 0 deletions

7
config/nvim/init.lua Normal file
View File

@ -0,0 +1,7 @@
local vim = vim
local Plug = vim.fn['plug#']
vim.call('plug#begin')
vim.call('plug#end')

29
install.sh Normal file
View File

@ -0,0 +1,29 @@
#!/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