Skip to content

Commit 850559f

Browse files
committed
utility/image-nvim: support sixel in backend enum
Signed-off-by: NotAShelf <[email protected]> Change-Id: I6a6a696461887a5f55632334e644ab04e0de5d76
1 parent fada903 commit 850559f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

modules/plugins/utility/images/image-nvim/image-nvim.nix

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ in {
99

1010
setupOpts = mkPluginSetupOption "image.nvim" {
1111
backend = mkOption {
12-
type = enum ["kitty" "ueberzug"];
12+
type = enum ["kitty" "ueberzug" "sixel"];
1313
default = "ueberzug";
1414
description = ''
1515
The backend to use for rendering images.
1616
17-
- kitty - best in class, works great and is very snappy
18-
- ueberzug - backed by ueberzugpp, supports any terminal,
17+
* `kitty` - best in class, works great and is very snappy. Recommended
18+
by upstream.
19+
* `ueberzug` - backed by ueberzugpp, supports any terminal,
1920
but has lower performance
21+
* `sixel` - uses the Sixel graphics protocol, widely supported by many terminals
2022
'';
2123
};
2224

0 commit comments

Comments
 (0)