update
This commit is contained in:
parent
7a903cc425
commit
17ca00ae10
7
config/nvim/init.lua
Normal file
7
config/nvim/init.lua
Normal 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
29
install.sh
Normal 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
|
||||
|
Loading…
Reference in New Issue
Block a user