Ecosyste.ms: Awesome

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

https://github.com/qoomon/zsh-lazyload

zsh plugin for lazy load commands and speed up start up time of zsh
https://github.com/qoomon/zsh-lazyload

lazy lazyload load plugin speedup zsh

Last synced: 2 months ago
JSON representation

zsh plugin for lazy load commands and speed up start up time of zsh

Lists

README

        

# zsh-lazyload [![Sparkline](https://stars.medv.io/qoomon/zsh-lazyload.svg)](https://stars.medv.io/qoomon/zsh-lazyload)

zsh plugin for lazy load commands and speed up start up time of zsh

## Usage
`lazyload command_name [command_name...] -- load_command`

#### Examples
##### `nvm`
- `lazyload nvm -- 'source ~/.nvm/nvm.sh'`

## Install

### [zgem](https://github.com/qoomon/zgem)
`zgem bundle 'https://github.com/qoomon/zsh-lazyload.git' from:'git' use:'zsh-lazyload.zsh'`
### [zplug](https://github.com/zdharma/zplugin)
`zplug qoomon/zsh-lazyload`
### [zgen](https://github.com/tarjoilija/zgen)
```
zgen load qoomon/zsh-lazyload
zgen save
```
### [Antigen](https://github.com/zsh-users/antigen)
```
antigen bundle qoomon/zsh-lazyload
antigen apply
```
### [Oh My ZSH! custom plugin](http://ohmyz.sh/)
```
git clone https://github.com/qoomon/zsh-lazyload $ZSH_CUSTOM/plugins/zsh-lazyload
plugins+=(zsh-lazyload)
```
### [zplug](https://github.com/zplug/zplug)
`zplug "qoomon/zsh-lazyload"`
### manually
```
git clone https://github.com/qoomon/zsh-lazyload.git
source zsh-lazyload/zsh-lazyload.zsh
```