An open API service indexing awesome lists of open source software.

https://github.com/givensuman/zsh-allclear

a zsh plugin that clears your terminal
https://github.com/givensuman/zsh-allclear

Last synced: 3 months ago
JSON representation

a zsh plugin that clears your terminal

Awesome Lists containing this project

README

        

### zsh-allclear

_As seen on [Awesome](https://github.com/unixorn/awesome-zsh-plugins)!_

A super tiny plugin (<10 LOC) that clears the terminal when you `cd` into `$HOME`. That's it.

### Installing

To install this, just put source the plugin file in your `~/.zshrc`

```shell
source /path/to/zsh-allclear.plugin.zsh
```

or, use your favorite plugin manager:

#### Oh-My-Zsh

Run the following command

```shell
git clone https://github.com/givensuman/zsh-allclear ${ZSH_CUSTOM:-~/.oh-my-zsh/custom/}/plugins
```

and add `zsh-allclear` to your plugin list in `~/.zshrc`

```
plugins=(
...
zsh-allclear
)
```

#### zplug

Add the following to your `~/.zshrc`

```shell
zplug 'givensuman/zsh-allclear'
```

#### zinit

Add the following to your `~/.zshrc`

```shell
zinit ice deptph "1"
zinit light givensuman/zsh-allclear
```

### License

You know the drill, do whatever you want with this.