blaze-keys 0.3.0

Zsh plugin for blazing fast Zsh commands, providing customizable leader-key combos and project-specific keybinds.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# nushell

config file at: ~/.config/nushell/config.nu

## top level keybinds

Will need to register a env_change hook:

$env.config.hooks = {
    env_change: {
        PWD: [{|before, after| '$env.test = (blz porcelain blat)' }]
    }
}

How do I make that update the $env in the current session? It seems like the env changes are scoped to the hook.