sessionizer-zoxide
May 1, 2025 ยท View on GitHub
A basic generator for sessionizer.wezterm that returns zoxide results.
Usage
- Require the plugin
local zoxide = wezterm.plugin.require "https://github.com/mikkasendke/sessionizer-zoxide.git"
- Use it in your schema
local my_schema = {
-- ... other stuff
zoxide.Zoxide {},
-- other stuff ...
}
Alternatively just use it directly when requiring like this:
local my_schema = {
-- ... other stuff
wezterm.plugin.require "https://github.com/mikkasendke/sessionizer-zoxide.git".Zoxide {},
-- other stuff ...
}
done :)