intial upload of lartu's original code

This commit is contained in:
2024-02-21 01:24:58 -05:00
parent 5475498753
commit 544c9bdb88
7 changed files with 320 additions and 2 deletions

14
nano/install.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Check if ~/.nano directory exists
if [ ! -d "$HOME/.nano" ]; then
echo "Creating ~/.nano directory..."
mkdir ~/.nano
fi
# Copy ldpl.nanorc to ~/.nano
echo "Copying ldpl.nanorc to ~/.nano"
cp ldpl.nanorc ~/.nano/ldpl.nanorc
# Add ldpl.nanorc to .nanorc
echo "include $HOME/.nano/ldpl.nanorc" >> ~/.nanorc