28 lines
513 B
Markdown
28 lines
513 B
Markdown
# full-border.yazi
|
|
|
|
Add a full border to Yazi to make it look fancier.
|
|
|
|

|
|
|
|
## Installation
|
|
|
|
```sh
|
|
ya pack -a yazi-rs/plugins#full-border
|
|
```
|
|
|
|
## Usage
|
|
|
|
Add this to your `init.lua` to enable the plugin:
|
|
|
|
```lua
|
|
require("full-border"):setup()
|
|
```
|
|
|
|
Or you can customize the border type:
|
|
|
|
```lua
|
|
require("full-border"):setup {
|
|
-- Available values: ui.Border.PLAIN, ui.Border.ROUNDED
|
|
type = ui.Border.PLAIN,
|
|
}
|
|
```
|