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: 8 months ago
JSON representation
zsh plugin for lazy load commands and speed up start up time of zsh
- Host: GitHub
- URL: https://github.com/qoomon/zsh-lazyload
- Owner: qoomon
- Created: 2019-04-29T07:22:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-20T15:40:14.000Z (about 1 year ago)
- Last Synced: 2025-03-29T19:02:45.089Z (8 months ago)
- Topics: lazy, lazyload, load, plugin, speedup, zsh
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 126
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-zsh-plugins - lazyload - Lazy load commands and speed up start up time of ZSH. (Plugins / ZSH on Windows)
- fucking-awesome-zsh-plugins - lazyload - Lazy load commands and speed up start up time of ZSH. (Plugins / ZSH on Windows)
- awesome-zsh-plugins - lazyload - Lazy load commands and speed up start up time of ZSH. (Plugins / Zinit (née zplugin))
README
# zsh-lazyload [](https://github.com/qoomon/starlines)
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
```