Update nvim config to behave like a text editor

This commit is contained in:
Antoine Phan
2024-01-21 14:07:32 -05:00
parent 8565515455
commit 159066c9f1
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
CONFIG=$HOME/.config
echo "instruction: ./update.sh <config_folder_name>"
config=$1
cp -r $CONFIG/$config/* ./.config/$config/
echo "Copied $CONFIG/$config to .config folder"