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: 5 days 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 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-29T12:47:01.000Z (10 months ago)
- Last Synced: 2024-10-19T08:36:35.932Z (17 days ago)
- Topics: lazy, lazyload, load, plugin, speedup, zsh
- Language: Shell
- Homepage:
- Size: 16.6 KB
- Stars: 119
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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
```