We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
backend
1 parent fada903 commit 850559fCopy full SHA for 850559f
modules/plugins/utility/images/image-nvim/image-nvim.nix
@@ -9,14 +9,16 @@ in {
9
10
setupOpts = mkPluginSetupOption "image.nvim" {
11
backend = mkOption {
12
- type = enum ["kitty" "ueberzug"];
+ type = enum ["kitty" "ueberzug" "sixel"];
13
default = "ueberzug";
14
description = ''
15
The backend to use for rendering images.
16
17
- - kitty - best in class, works great and is very snappy
18
- - ueberzug - backed by ueberzugpp, supports any terminal,
+ * `kitty` - best in class, works great and is very snappy. Recommended
+ by upstream.
19
+ * `ueberzug` - backed by ueberzugpp, supports any terminal,
20
but has lower performance
21
+ * `sixel` - uses the Sixel graphics protocol, widely supported by many terminals
22
'';
23
};
24
0 commit comments