Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jkcdarunday/zplug-blame
A zsh plugin for zplug that lets you see how long it took to load each plugin
https://github.com/jkcdarunday/zplug-blame
Last synced: about 4 hours ago
JSON representation
A zsh plugin for zplug that lets you see how long it took to load each plugin
- Host: GitHub
- URL: https://github.com/jkcdarunday/zplug-blame
- Owner: jkcdarunday
- License: mit
- Created: 2023-08-05T15:12:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-06T03:06:53.000Z (over 1 year ago)
- Last Synced: 2024-04-16T16:22:11.481Z (7 months ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zplug-blame
A zsh plugin for zplug that lets you see how long it took for each zplug plugin to load## Usage
Make sure that this plugin is loaded before any other plugins.### Print plugin load times with zplug's total load time
If you want to print the total time since zplug has loaded, you can follow the ff. example in your .zshrc:
```zsh
export ZPLUG_BLAME_START_TIME=$(date +%s%N)
. /usr/share/zsh/scripts/zplug/init.zshzplug 'jkcdarunday/zplug-blame'
# Your other zplug plugins go herezplug check || zplug install
zplug load
zplug_blame::print_load_time
```### Print plugin load times only
If you don't want to print the zplug load time, you can omit the `export` and `print_load_time` lines like in the ff. example:
```zsh
. /usr/share/zsh/scripts/zplug/init.zshzplug 'jkcdarunday/zplug-blame'
# Your other zplug plugins go herezplug check || zplug install
zplug load
```