Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.zsh

zplug 'jkcdarunday/zplug-blame'
# Your other zplug plugins go here

zplug 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.zsh

zplug 'jkcdarunday/zplug-blame'
# Your other zplug plugins go here

zplug check || zplug install
zplug load
```