diff --git a/plugins/easy-curl/README.md b/plugins/curl/README.md similarity index 97% rename from plugins/easy-curl/README.md rename to plugins/curl/README.md index a918c8e6c..a70f81edc 100644 --- a/plugins/easy-curl/README.md +++ b/plugins/curl/README.md @@ -1,13 +1,13 @@ -# easy-curl plugin +# curl plugin This plugin provides a comprehensive set of aliases and functions to simplify working with `curl` command-line tool, making API testing and HTTP requests more convenient. ## Installation -To use it, add `easy-curl` to the plugins array in your zshrc file: +To use it, add `curl` to the plugins array in your zshrc file: ```zsh -plugins=(... easy-curl) +plugins=(... curl) ``` ## Requirements diff --git a/plugins/easy-curl/easy-curl.plugin.zsh b/plugins/curl/curl.plugin.zsh similarity index 98% rename from plugins/easy-curl/easy-curl.plugin.zsh rename to plugins/curl/curl.plugin.zsh index ab2ddc6c3..49c52f44e 100644 --- a/plugins/easy-curl/easy-curl.plugin.zsh +++ b/plugins/curl/curl.plugin.zsh @@ -1,6 +1,6 @@ #!/usr/bin/env zsh -# easy-curl - an Oh My Zsh plugin to simplify working with curl +# curl - an Oh My Zsh plugin to simplify working with curl # Basic curl aliases alias cl='curl -L' # follow redirects