No description
- Earthly 66.5%
- Rust 33.5%
|
|
||
|---|---|---|
| .cargo | ||
| src | ||
| .gitignore | ||
| .woodpecker.yaml | ||
| Cargo.lock | ||
| Cargo.toml | ||
| Earthfile | ||
| README.md | ||
| renovate.json | ||
| screenshot.png | ||
zellij-blank-plugin
What is it?
This is the simplest zellij plugin imaginable: it does absolutely nothing!
Why?
To start learning to develop a zellij plugin, but also to use it in a layout so you can have a centered shell.
Here's the layout I had in mind when I started "developing" this plugin:
// Centered layout.
layout {
pane split_direction="vertical" {
pane borderless=true {
plugin location="file:zellij-blank-plugin.wasm"
}
// You can set the size below to something else if you want
pane size="50%" focus=true borderless=true
pane borderless=true {
plugin location="file:zellij-blank-plugin.wasm"
}
}
}
keybinds clear-defaults=true {
// Only provide the CTRL+q keybinding to quit.
shared {
bind "Ctrl q" { CloseTab; }
}
}
And this is what it looks like:
