mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
16 lines
378 B
Nix
16 lines
378 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "kitty-scrollback";
|
|
package = "kitty-scrollback-nvim";
|
|
|
|
maintainers = [ lib.maintainers.nim65s ];
|
|
|
|
settingsExample = lib.literalExpression ''
|
|
{
|
|
# create your config
|
|
myconfig.kitty_get_text.ansi = false;
|
|
# or extend a builtin one
|
|
ksb_builtin_last_cmd_output.ansi = false;
|
|
}
|
|
'';
|
|
}
|