Skip to content

Instantly share code, notes, and snippets.

View rafaelrojasmiliani's full-sized avatar

Rafael A. Rojas rafaelrojasmiliani

View GitHub Profile
@rafaelrojasmiliani
rafaelrojasmiliani / vim_plugin_git_repo_creator.bash
Created July 4, 2024 18:38
Create a vim plugin git repo with bash
#!/bin/bash
main() {
# Check if the plugin name is provided
if [ -z "$1" ]; then
echo "Usage: $0 <plugin_name>"
exit 1
fi
PLUGIN_NAME=$1