Home

Awesome

ZSH Web Search

A web search plugin for ZSH.

Installation

  1. Clone this repository to your local machine.
  2. Add the following line to your .zshrc file:
source /path/to/zsh-web-search/zsh-web-search.zsh
  1. Restart your terminal or source your .zshrc file.

Usage

Customization

To add more search engines, you can add them to the zsh-web-search.zsh file. For example, to add the parameter for GitHub, add the entry to this Associative Array:

    declare -A search_url_arr=(
        ...
        ["github"]="https://github.com/search?q="
        ...
    )

TODO